List Redirections
This API is used to list url redirection policies for website accleration domain or filedownload service.
1. Request Definition
- API URL
https://cdn-api.swiftfederation.com/v1.0/services/{serviceId}/redirections
- Request Method
GET
- Request Header
Refer to HTTP Request Headers
- Request Body
No request body for this API.
2. Response Definition
- Response Header
Refer to HTTP Response Headers
- Response Body
Field | Type | Description |
---|---|---|
id | int | Policy ID number for access control. |
name | string | Policy name for access control. |
matchType | string | Policy match type, could be "regex" or "prefix". |
url | string | Prefix or regex of url pattern. |
redirectionURL | string | Send an HTTP redirect if this policy matches. |
statusCode | int | HTTP response code to use if sending an HTTP redirect. Could be "301/302". |
- Response Body Example
[
{
"id": 3001,
"name": "rd3001",
"matchType": "regex",
"url": "/*.js",
"redirectionURL": "http://www.example.com/404.html",
"statusCode": 302
},
{
"id": 3002,
"name": "rd3002",
"matchType": "regex",
"url": "/*.js",
"redirectionURL": "http://www.example.com/500.html",
"statusCode": 302
},
{
"id": 3003,
"name": "rd3003",
"matchType": "regex",
"url": "/*.js",
"redirectionURL": "http://www.example.com/503.html",
"statusCode": 301
}
]