Retrieve a list of templates

Fetch a list of templates with optional filters like prefix, public, unpublished, and pagination using limit and next token.

GET
/templates
AuthorizationBearer <token>

In: header

Query Parameters

id?string

Filter resources by their unique identifier

org_id?string

Filter resources by the organization they belong to

name?string

Filter resources by their name or title

autocomplete?string

Search term for autocomplete functionality

limit?integer

How many items to return at one time (max 100)

Formatint64
next?string

Pagination token for retrieving the next page of results

order?string

Sort order for the results (ascending or descending)

Value in"asc" | "desc"
sortBy?string

Field name to sort the results by

prefix?string

Filter templates by a prefix for their name or identifier.

fqdn?string

Filter templates by fully qualified domain name

when_created[$gt]?string

Filter templates created after this date and time

Formatdate-time
when_created[$lt]?string

Filter templates created before this date and time

Formatdate-time
when_created[$gte]?string

Filter templates created on or after this date and time

Formatdate-time
when_created[$lte]?string
Formatdate-time

Response Body

application/json

application/json

application/json

curl -X GET "https://api-testnet.dual.network/templates"
{
  "templates": [
    {
      "id": "string",
      "name": "string",
      "fqdn": "string",
      "object": {
        "custom": {},
        "metadata": {
          "name": "string",
          "description": "string",
          "category": "string",
          "image": {
            "id": "string",
            "name": "string",
            "type": "string",
            "url": "string",
            "hash": "string",
            "is_public": true,
            "when_created": "2019-08-24T14:15:22Z"
          },
          "edition": 0
        },
        "assets": [
          {
            "id": "string",
            "name": "string",
            "type": "string",
            "url": "string",
            "hash": "string",
            "is_public": true,
            "when_created": "2019-08-24T14:15:22Z"
          }
        ]
      },
      "factory": {
        "max_supply": 0,
        "minted_count": 0,
        "start_time": "2019-08-24T14:15:22Z",
        "end_time": "2019-08-24T14:15:22Z",
        "whitelist": [
          "string"
        ]
      },
      "public_access": {
        "custom": [
          "string"
        ]
      },
      "actions": [
        {
          "name": "mint",
          "alias": "string",
          "access": {
            "type": "public",
            "tokens": {
              "property1": 0,
              "property2": 0
            }
          },
          "validators": [
            {
              "type": "http",
              "url": "string"
            }
          ],
          "config": {},
          "url": "string"
        }
      ],
      "face_id": "string",
      "when_created": "2019-08-24T14:15:22Z",
      "when_modified": "2019-08-24T14:15:22Z"
    }
  ],
  "next": "string"
}
{
  "code": 0,
  "message": "string",
  "details": {}
}
{
  "code": 0,
  "message": "string",
  "details": {}
}