Skip to content

Retrieve a template

Retrieves a single Template object referenced by its unique ID.

Parameters

id string REQUIRED
The template id of the template that will be retrieved.

Sample Request

Here’s a sample request to retrieve a template:

ENDPOINT
GET /v1/template/:id
REQUEST
fetch(`https://api.templated.io/v1/template/${id}`, {
method: 'GET',
headers: {
'Authorization' : `Bearer ${API_KEY}`
}
})