RECENT UPDATES:
05-Jun-2026 | v7.10.7 | All new article

Change Log

  • 05-Jun-2026 | v7.10.7 | All new article

Contributors:

{
  "id": 2418,
  "name": "Adam Wilson",
  "url": "/adam-wilson"
}
Adam Wilson - Logo Pogo

URL Redirects API

Create, Retrieve, Update and Delete URL Redirects via the public API endpoint using "where" filtering.

GET URL Redirects List

Retrieves a list of URL Redirects as a JSON response based on your provided query parameters.

/api/v2/admin/url-redirects

Parameters

Parameter
Values
Required
Where
{<where query>}
Order_By
<propertyAlias>
Semantic_Query
<string>
Min_Score
<double>
Offset
<integer>
Limit
<integer>

Data / Response:

N/A
{
  "Items": [
    {
      "Id": 0,
      "Source": "string",
      "Destination": "string",
      "Enabled": true,
      "CaseInSensitive": true
    }
  ],
  "TotalItemsCount": 0
}

POST URL Redirect Create

Creates a new URL Redirect based on the provided data.

/api/v2/admin/url-redirects

Data / Response:

{
  "Source": "string",
  "Destination": "string",
  "Enabled": true,
  "CaseInSensitive": true
}
{
  "Id": 0,
  "Source": "string",
  "Destination": "string",
  "Enabled": true,
  "CaseInSensitive": true
}

GET URL Redirect Item

Retrieves a single URL Redirect based on the ID passed in the endpoint URL.

/api/v2/admin/url-redirects/{id}

Data / Response:

N/A
{
  "Id": 0,
  "Source": "string",
  "Destination": "string",
  "Enabled": true,
  "CaseInSensitive": true
}

PUT URL Redirect Update

Updates a single URL Redirect based on the ID passed in the endpoint URL and data provided.

/api/v2/admin/url-redirects/{id}

Data / Response:

{
  "Id": 0,
  "Source": "string",
  "Destination": "string",
  "Enabled": true,
  "CaseInSensitive": true
}
{
  "Id": 0,
  "Source": "string",
  "Destination": "string",
  "Enabled": true,
  "CaseInSensitive": true
}

DELETE URL Redirect Delete

Deletes a single URL Redirect based on the ID passed in the endpoint URL.

/api/v2/admin/url-redirects/{id}

Data / Response:

N/A
Status 204