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
No Content
No content
Unauthorized
Conflict
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)
Success
Unauthorized
Not Found
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.
No Content
No content
Unauthorized
Not Found
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)
No Content
No content
Unauthorized
Not Found
DELETE /api/URLRedirectionSettings/Entry/{id} HTTP/1.1
Host:
Accept: */*
No content
Was this helpful?