List
Returns a list of templates.
- HTTP Method:
GET - Endpoint:
https://eledo.online/api/RESTv1/List
Query string parameters
| Name | Type | Required | Description |
|---|---|---|---|
scope | String | No | Template scope — "Mine" or "Public" |
limit | Integer | No | Maximum number of results |
page | Integer | No | Page number |
Response
Body
| Name | Type | Description |
|---|---|---|
templates | Array of Template objects | List of templates |
total | Integer | Total count (informational) |
Template object
| Property | Type | Description |
|---|---|---|
id | String | Template identifier |
name | String | Template name |
version | Integer | Template version |
bulk | Boolean | Indicates bulk template |
date | Number | Creation timestamp |
thumbnailUrl | String | Template preview image URL |
type | Integer | Template type |
Example response
{
"total": 2,
"templates": [
{
"id": "...",
"date": 1763113932000,
"name": "Example Template",
"thumbnailUrl": "https://...",
"type": 0,
"version": 1,
"bulk": false
}
]
}
Next steps
Was this article helpful?
Yes
No