You need to enable JavaScript to run this app.
导航

响应结果

最近更新时间2022.07.28 21:39:27

首次发布时间2022.07.28 21:39:27

响应状态码

API 请求成功时,HTTP 响应状态码是 200。
API 请求失败时,会出现以下任意一个情况:

  • HTTP 响应状态码是 4xx 或 5xx。
  • 响应正文的 ResponseMetadata 结构体包含 Error 字段。

API 请求成功的响应示例

{
	"ResponseMetadata": {
		"RequestId": "2021041510110201022510703416005FB0",
		"Action": "DescribeCloudAccount",
		"Version": "2022-03-01",
		"Service": "mcdn",
		"Region": "cn-north-1"
	},
	"Result": {...}
}

API 请求失败的响应示例

{
	"ResponseMetadata": {
		"RequestId": "2021041510110201022510703416005FB0",
		"Action": "DescribeCloudAccount",
		"Version": "2022-03-01",
		"Service": "mcdn",
		"Region": "cn-north-1",
		"Error": {
			"Code": "ResourceNotFound",
			"Message": "resource is not found"
		}
	}
}