Retrieves the available HTTP status codes for filtering log data.
Retrieve HTTP status codes via the following request:
HTTP Method | Request URI |
---|---|
GET |
https://api.transactcdn.com/v2/mcc/rtld/status-codes |
This endpointIdentifies a request's connection point to our REST API service. only takes advantage of common request headers.
Request body parameters are not required by this endpoint.
The response to the above request includes an HTTP status code, response headers, and a response body.
A status code indicates whether the request was successfully performed.
The response for this endpoint only includes standard HTTP response headers.
The response body for a successful request contains the following response elements:
Name | Data Type | Description |
---|---|---|
@id |
String |
Returns /v2/mcc/rtld/status-codes.
|
@type |
String |
Returns Collection. |
items |
Array |
Contains the available HTTP status codes for filtering log data. |
code |
String |
items array Identifies a HTTP status code by its code name. Reference this code name when defining or retrieving a RTLD configuration. |
name |
String |
items array Identifies a HTTP status code by its name. |
total_items |
Integer |
Indicates the total number of HTTP status codes that were included in the response. |
The response body for an unsuccessful request will contain an error response that provides additional information.
A sample JSON request is shown below.
GET https://api.transactcdn.com/v2/mcc/rtld/status-codes HTTP/1.1
Authorization: TOK:12345678-1234-1234-1234-1234567890ab
Accept: application/json
Content-Type: application/json
Host: api.transactcdn.com
A sample JSON response is shown below.
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json; charset=utf-8
Date: Thu, 15 Apr 2021 12:00:00 GMT
Content-Length: 282
{ "@id": "/v2/mcc/rtld/status-codes", "@type": "Collection", "items": [{ "code": "2xx", "name": "2XX" }, { "code": "3xx", "name": "3XX" }, { "code": "4xx", "name": "4XX" }, { "code": "5xx", "name": "5XX" } ], "total_items": 4 }