Get Origin HTTP Codes Number
This API is used to list HTTP status codes and their number for orgin server with 5 minutes data sample.
1. Request Definition
- API URL
https://cdn-api.swiftfederation.com/v1.0/report/origin_http_codes
- Request Method
POST
- Request Header
Refer to HTTP Request Headers
- Request Body
Request Body Data Format: JSON
Field | Required | Type | Description |
---|---|---|---|
domains | Mandatory | string[] | Array of domain names, the max array size is 50. |
startTime | Mandatory | string | Start time. Format yyyy-MM-ddTHH:mm:ssZ UTC time. |
endTime | Mandatory | string | End time. Format yyyy-MM-ddTHH:mm:ssZ UTC time. Interval between start time and end time cannot be longer than 24 hours. |
- Request Body Example
{
"domains": [
"www.example1.com",
"www.example2.com"
],
"startTime": "2018-03-29T17:35:00Z",
"endTime": "2018-03-29T17:45:00Z"
}
2. Response Definition
- Response Header
Refer to HTTP Response Headers
- Response Body
Field | Type | Description |
---|---|---|
domain | string | Name of domain. |
httpCodes | HttpCode[] | List of HTTP codes and their number of requests values. |
HttpCode Definition | ||
timestamp | string | Format yyyy-MM-ddTHH:mm:ssZ UTC time. E.g. 2018-03-29T17:35:00Z will return data from 2018-03-29T17:35:00Z to 2018-03-29T17:39:59Z. |
httpCodeValues | map<String,Long> | HTTP code and it’s number of requests. Format will be map which includes HTTP code and number of requests in 5 minutes for this HTTP code. |
- Response Body Example
[
{
"domain": "www.example1.com",
"httpCodes": [
{
"timestamp": "2018-03-29T17:35:00Z",
"httpCodeValues": {
"200": 3,
"206": 10
}
}
]
},
{
"domain": "www.example2.com",
"httpCodes": [
{
"timestamp": "2018-03-29T17:35:00Z",
"httpCodeValues": {
"200": 2,
"304": 1
}
}
]
}
]