v1

latestOpenAPI 3.0.02026-07-2417611.8 MB
Authoring image profiles

Retrieve all image profiles in the database ordered by last modified date.

Use the /image-profiles/views/by-modified endpoint to retrieve all image profiles from the database and list them in the order of their last modified date.<br />User roles: admin, manager, editor, viewer

get/authoring/v1/image-profiles/views/by-modified

Query parameters

startstring date-time

Provide the date and time of when the last modifications were made to the image profiles that you want returned. When the order is ascending (default), the image profiles that are modified on or after this date and time are returned. When the order is descending, the image profiles that are modified on or before this date and time are returned. The date value must be in the ISO 8601 format YYYY-MM-DD T hh:mm:ss:sssZ.

endstring date-time

Provide the date and time of when the last modifications were made to the image profiles that you want returned. When the order is ascending (default), the image profiles that are modified on or before this date and time are returned. When the order is descending, the image profiles that are modified on or after this date and time are returned. The date value must be in the ISO 8601 format YYYY-MM-DD T hh:mm:ss:sssZ.

startIdstring

If start does not uniquely identify the result to start from, you can specify the UUID of the result as startId.

endIdstring

If end does not uniquely identify the result to end at, you can specify the UUID of the result as endId.

offsetnumber

Use the offset parameter to specify the number of image profiles to skip and return the rest.

limitnumber

Set the limit for the number of image profiles that are returned.

format'feed' | 'array' | 'sequence'

Specify the result format.

  • feed - (default) returns a wrapper with links
  • array - returns just the array of results
  • sequence - each result is a separate JSON document on a new line
pageMode'offset' | 'deep'

Specify the next and previous page link mode.

  • offset - (default) allows paging forward or backwards, but only a small number of times
  • deep - uses index keys to efficiently page through a large result set, but only in one direction
order'ascending' | 'descending'

Specify whether you want the image profiles to be returned in ascending/oldest-first (default) or descending/newest-first order.

fieldsstring

Only the image profile fields that are specified here are returned for each result. Any image profile field is a valid value and can be specified as a comma-separated list.

includestring

Specifies additional fields to include with each result. Valid options are: * all: Adds all current and future additional fields to the response. When used in-conjunction with the 'fields' option, both the fields that are specified in the 'fields' option and the fields in the 'include' option are returned.

Response

Success.

offsetinteger

number of results to skip.

limitinteger

number of results to return.

hrefstring

the url of the current query.

nextstring

the url for the next page of results. Only present if there are more results.

previousstring

the url for the previous page of results. Not present when on the first page.

Example response

{
  "items": [
    {
      "tags": [
        "news",
        "sample"
      ]
    }
  ]
}