Saltar al contenido principal
GET
/
cms
/
url-redirects
/
2026-03
cURL
curl --request GET \
  --url https://api.hubapi.com/cms/url-redirects/2026-03 \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "created": "2023-11-07T05:31:56Z",
      "destination": "<string>",
      "id": "<string>",
      "isMatchFullUrl": true,
      "isMatchQueryString": true,
      "isOnlyAfterNotFound": true,
      "isPattern": true,
      "isProtocolAgnostic": true,
      "isTrailingSlashOptional": true,
      "precedence": 123,
      "redirectStyle": 123,
      "routePrefix": "<string>",
      "updated": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123,
  "paging": {
    "next": {
      "after": "<string>",
      "link": "<string>"
    }
  }
}

Supported products

Autorizaciones

Authorization
string
header
requerido

The access token received from the authorization server in the OAuth 2.0 flow.

Parámetros de consulta

after
string
archived
boolean
createdAfter
string<date-time>
createdAt
string<date-time>
createdBefore
string<date-time>
limit
integer<int32>
sort
string[]
updatedAfter
string<date-time>
updatedAt
string<date-time>
updatedBefore
string<date-time>

Respuesta

successful operation

results
object[]
requerido

Un conjunto de objetos UrlMapping, cada uno de los cuales representa una asignación de URL específica.

total
integer<int32>
requerido

El número total de asignaciones de URL disponibles.

paging
object
Last modified on June 5, 2026