Entry
Add URL Redirection Entry.
The Site ID for which to modify the URL Redirection Settings. (optional)
Add a URL redirection to the URL redirection list
Whether the URL redirection will be enabled or disabled.
The URL to redirect or not.
Redirect action type options
POST /api/URLRedirectionSettings/Entry HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 75
{
"enabled": true,
"url": "text",
"action": [
"0 = DoNotRedirect",
"1 = Redirect"
]
}
No content
Retrieve URL Redirection Entry.
The Id for which to retrieve the URL Redirection Entry
The Site ID for which to modify the URL Redirection Settings. (optional)
GET /api/URLRedirectionSettings/Entry/{id} HTTP/1.1
Host:
Accept: */*
{
"id": 1,
"priority": 1,
"enabled": true,
"url": "text",
"action": [
"0 = DoNotRedirect",
"1 = Redirect"
]
}
Update URL Redirection Entry.
The ID for which to modify the URL Redirection Entry.
The Site ID for which to modify the URL Redirection Settings. (optional)
Add a URL redirection to the URL redirection list
Whether the URL redirection will be enabled or disabled.
The URL to redirect or not.
Redirect action type options
Move Direction.
PUT /api/URLRedirectionSettings/Entry/{id} HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 108
{
"enabled": true,
"url": "text",
"action": [
"0 = DoNotRedirect",
"1 = Redirect"
],
"priority": [
"0 = Up",
"1 = Down"
]
}
No content
Remove URL Redirection Entry.
The ID for which to Remove the URL Redirection Entry.
The Site ID for which to modify the URL Redirection Settings. (optional)
DELETE /api/URLRedirectionSettings/Entry/{id} HTTP/1.1
Host:
Accept: */*
No content
Last updated
Was this helpful?