Check a metadata tracing request status
GET https://{{host}}/edge-diagnostics/v1/metadata-tracer/requests/:requestId
Returns the status of the asynchronous Launch a Metadata Tracer request operation. For operations with the SUCCESS
status, the response includes the metadata details. For requests with the Accept: text/html
request header, results are in static HTML format. To learn more about the results, check How to read the results.
Body
PARAM
Key | Datatype | Required | Description |
accountSwitchKey
|
string | (Optional) For customers who manage more than one account, this [runs the operation from another account](https://techdocs.akamai.com/developer/docs/manage-many-accounts-with-one-api-client). The Identity and Access Management API provides a [list of available account switch keys](https://techdocs.akamai.com/iam-api/reference/get-client-account-switch-keys). |
HEADERS
Key | Datatype | Required | Description |
Accept
|
string |
RESPONSES
status OK
{
"completedTime": "2021-04-20T08:50:36Z",
"createdBy": "szhang",
"createdTime": "2021-04-20T08:50:34Z",
"edgeIpLocation": {
"asNumber": 123,
"city": "TOKYO",
"countryCode": "JP",
"regionCode": "13"
},
"executionStatus": "SUCCESS",
"internalIp": "192.0.2.12",
"request": {
"edgeIp": "192.0.2.12",
"requestHeaders": [
"Connection: keep-alive",
"Accept-Language: en-US"
],
"url": "https://www.example.com"
},
"requestId": 241,
"result": {
"arlDataXml": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n\n<configs xmlns:cache=\"uri:akamai.com/metadata/cache/5.0\" xmlns:edgeservices=\"uri:akamai.com/metadata/edgeservices/5.0\" xmlns:config=\"uri:akamai.com/metadata/config/5.0\" xmlns:network=\"uri:akamai.com/metadata/network/5.0\" xmlns:auth=\"uri:akamai.com/metadata/auth/5.0\" xmlns:match=\"uri:akamai.com/metadata/match/5.0\" xmlns:forward=\"uri:akamai.com/metadata/forward/5.0\" xmlns:comment=\"uri:akamai.com/metadata/comment/5.0\" xmlns:akamai=\"uri:akamai.com/metadata/akamai/5.0\" xmlns:security=\"uri:akamai.com/metadata/security/5.0\" xmlns:reporting=\"uri:akamai.com/metadata/reporting/5.0\" xmlns:edgecomputing=\"uri:akamai.com/metadata/edgecomputing/5.0\" xmlns:assign=\"uri:akamai.com/metadata/assign/5.0\">\n\n <comment:note value=\"Property Manager generated metadata. XML engine version: 22.6\"/>\n <comment:note value=\"Catalog version: 22.6\"/>\n <comment:note value=\"Product name: Fresca\"/>\n <comment:note value=\"Property name: mdt.stmtesting.com, version: 15\"/>\n <comment:note value=\"Asset ID: 10976512\"/>\n <comment:note value=\"File ID: 763347\"/>\n <comment:note value=\"AcgID: \"/>\n <comment:note value=\"AccountId: B-C-1IE2OH8\"/>\n <comment:note value=\"Hostnames: mct.gshaw.in mdt.gshaw.in mdt.stmtesting.com\"/>\n <akamai:edge-config version=\"5.0\">\n <edgeservices:product.name>Fresca</edge Curl curl -X GET 'https://host/edge-diagnostics/v1/metadata-tracer/requests/:requestId?accountSwitchKey=' -H 'Accept: application/json' ENDPOINTS |