Skip to main content
GET
/
templates
/
{uid}
/
variables
Get template variables
curl --request GET \
  --url https://api.pictify.io/templates/{uid}/variables \
  --header 'Authorization: Bearer <token>'
{
  "templateUid": "<string>",
  "templateName": "<string>",
  "variables": [
    {
      "name": "<string>",
      "type": "text",
      "defaultValue": "<string>",
      "description": "<string>",
      "validation": {
        "required": true,
        "minLength": 123,
        "maxLength": 123
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

API key obtained from the Pictify dashboard

Path Parameters

uid
string
required

Response

200 - application/json

Template variables

templateUid
string
templateName
string
variables
object[]