Skip to main content
GET
/
templates
/
{uid}
Get template
curl --request GET \
  --url https://api.pictify.io/templates/{uid} \
  --header 'Authorization: Bearer <token>'
{
  "template": {
    "uid": "<string>",
    "name": "<string>",
    "type": "<string>",
    "category": "<string>",
    "tags": [
      "<string>"
    ],
    "width": 123,
    "height": 123,
    "thumbnail": "<string>",
    "outputFormat": "image",
    "variableDefinitions": [
      {
        "name": "<string>",
        "type": "text",
        "defaultValue": "<string>",
        "description": "<string>",
        "validation": {
          "required": true,
          "minLength": 123,
          "maxLength": 123
        }
      }
    ],
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

API key obtained from the Pictify dashboard

Path Parameters

uid
string
required

Response

Template details

template
object