Get All Entity Templates
GET
/v1/templates
const url = 'https://example.com/api/v1/templates';const options = {method: 'GET', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/templates \ --header 'Authorization: <Authorization>'Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”OK
Media type application/json
Array<object>
object
createdAt
string
description
string
id
string
name
string
updatedAt
string
Example generated
[ { "createdAt": "example", "description": "example", "id": "example", "name": "example", "updatedAt": "example" }]