Get Templates

For customers with the Adaptive Template templates feature, use this endpoint to return a list of all available templates in the system.

SecurityApiKeyAuth or BasicAuth
Request
header Parameters
X-API-Key
required
string

Customer-specific API key required to invoke API.

Authorization
required
string

Provided by Authentication Token creation operation

Content-Type
required
string
Value: "application/json"
Request Body schema: application/json
required

The Request Body must be a JSON object

from
required
integer <= 10000
Default: 0

The beginning index of the search. A value greater than 0 will offset the search.

limit
required
integer or null [ 1 .. 100 ]
Default: 50

The maximum number of templates to return per page.

searchTerm
Array of strings or null

List of search terms with AND operation by default

required
Array of objects or null (Search_sortBy)

The metadata attribute and order to sort by.

operation
required
string

Indicates whether to apply an AND conditions or an OR condition between search terms

Responses
200

The Response Body is a JSON object.

401

Unauthorized. Missing Authorization or AccessToken or Access Token expired

403

Forbidden. Missing X-API-key

post/template
Request samples
application/json
{
  • "from": 0,
  • "limit": 50,
  • "searchTerm": [
    ],
  • "sortBy": [
    ],
  • "operation": "AND"
}
Response samples
application/json
{}