v1
latestOpenAPI 3.0.02026-07-2417611.8 MBRetrieve all type documents in the database.
Use the /types endpoint to retrieve all content type documents from the database.<br />User roles: admin, manager, editor, viewer
Query parameters
Use the offset parameter to specify the number of type documents to skip and return the rest.
Set the limit for the number of type documents that are returned.
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
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
Specify whether you want the type documents to be returned in ascending/alphabetical (default) or descending/reverse-alphabetical order.
Only the content type fields that are specified here are returned for each result. Any type document field is a valid value and can be specified as a comma-separated list.
Specify additional fields to include with each result. Valid options are:
- links: Adds the 'links' section (see '#/definitions/DocumentLinks') to the response.
- 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
Successfully lists all content type documents that are requested.
Example response
{
"items": [
{
"path": "/myTypes/SampleType.json",
"thumbnail": {
"id": "6c622bbb-5f5b-45d4-89e1-fce1c054138f",
"path": "/sales/images/hub.png",
"url": "/authoring/v1/resources/47d535ff288b3bd8383009abf82a9ea8"
}
}
]
}