List Templates
List all templates for your organisation. Use this to find template IDs for creating sessions.
Endpoint
GET https://api.airsign.com.au/api/v1/TemplatesHeaders
| Name | Value | Required | Description |
|---|---|---|---|
| Authorization | Bearer {access_token} | Yes | Bearer token obtained from authentication |
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| status | string | No | Filter by template status. Default: active |
| limit | integer | No | Number of results per page. Default: 50, max: 100 |
| offset | integer | No | Number of results to skip for pagination. Default: 0 |
Example Request
curl --location 'https://api.airsign.com.au/api/v1/Templates?status=active' \
--header 'Authorization: Bearer {access_token}'Response
Status: 200 OK
{
"templates": [
{
"templateId": "{uuid}",
"name": "Employment Contract",
"status": "active",
"selfSignOnly": false,
"createdAt": "2025-05-01T08:00:00.000Z",
"updatedAt": "2025-06-10T12:00:00.000Z",
"recipientCount": 2,
"hasVariables": false
}
],
"pagination": {
"total": 5,
"limit": 50,
"offset": 0,
"hasMore": false
}
}