Skip to content

List folder templates

Lists all templates of a folder.

Parameters

id string REQUIRED The folder id that you want to retrieve the templates.

Sample Request

Here’s a sample request to list all templates of a folder:

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