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 |
Observed behavior
The following behavior has been observed in real integrations and may differ from typical API expectations.
Scope
The API expects the following values:
scope=Minescope=Public
If scope is omitted, the API behaves similarly to scope=Mine.
Internally, some integrations may refer to this as "private" scope, but this is only an implementation detail. The actual API parameter values are "Mine" and "Public".
Recommendation: Always specify scope explicitly using the official API values.
Limit
limit=0returns all templates- Negative values are treated as absolute values
- When combined with
scope, thelimitparameter may be ignored - Works reliably only when used alone
Recommendation: Apply client-side limits when needed
Pagination
pageparameter appears to have no effect- Different page values return identical results
Recommendation: Do not rely on server-side pagination
Query validation
- Unknown query parameters are ignored
- Invalid values for known parameters may cause errors
- Some error responses may be returned as HTML instead of JSON
Recommendation: Validate parameters on the client side and handle non-JSON responses
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