List

List

Returns a list of templates.

  • HTTP Method: GET
  • Endpoint: https://eledo.online/api/RESTv1/List

Query string parameters

NameTypeRequiredDescription
scopeStringNoTemplate scope — "Mine" or "Public"
limitIntegerNoMaximum number of results
pageIntegerNoPage number

Response

Body

NameTypeDescription
templatesArray of Template objectsList of templates
totalIntegerTotal count (informational)

Template object

PropertyTypeDescription
idStringTemplate identifier
nameStringTemplate name
versionIntegerTemplate version
bulkBooleanIndicates bulk template
dateNumberCreation timestamp
thumbnailUrlStringTemplate preview image URL
typeIntegerTemplate 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