Get all URL mappings. Supports paging and filtering. Some parameters support “range” filters via double-underscored param suffixes, like __gt
. If a parameter supports a filter type of gt
, that means you can append a double-underscore and gt
to the parameter name to find all items greater than a specified value.
The access token received from the authorization server in the OAuth 2.0 flow.
Use the casing=snake
parameter to change the API's casing for all query parameters and JSON fields to snake_case
, rather than camelCase
, which is the default. This option is provided for backwards-compatibility and ease of migration from Content v2 APIs, which used snake_case
.
snake
The offset from the beginning of the result set from which to start returning results. Used for paging. Defaults to 0
.
The maximum number of items to return. Defaults to 20
.
Filter by deletion timestamp, in milliseconds since the epoch. Supports exact value matching and range filters: range
, gt
, gte
, lt
, lte
.
Filter results by last update date, in milliseconds since the epoch. Supports exact value matching and the following range filters: range
, gt
, gte
, lt
, lte
.
Filter results by creation date, in milliseconds since the epoch. Supports exact value matching and the following range filters: range
, gt
, gte
, lt
, lte
.
Filter results by this boolean field's value (true
, false
).
If true
, the routePrefix
should match on the entire URL including the domain.
Filter results by this boolean field's value (true
, false
).
Filter results by this boolean field's value (true
, false
).
Search for mappings by internal name. Supports exact value matching and the in
range filter (e.g. name__in=list-by-author,list-by-topic
).
Search for mappings created for a specific content group ID (aka blog ID). Must be an exact value match.
Search for mappings with a specific destination
string value. Must be an exact value match.
Search for mappings with a specific routePrefix
string value. Must be an exact value match.
Search for mappings by ID. Supports exact value matching and the in
range filter (e.g. id__in=348109009,348109019
).
successful operation
The response is of type object
.