Skip to main content
GET
/
bindings
/
{uid}
Get binding
curl --request GET \
  --url https://api.pictify.io/bindings/{uid} \
  --header 'Authorization: Bearer <token>'
{
  "binding": {
    "uid": "<string>",
    "name": "<string>",
    "templateId": "<string>",
    "dataSource": {
      "type": "http",
      "url": "<string>",
      "method": "GET"
    },
    "mapping": {},
    "defaults": {},
    "refreshPolicy": {
      "type": "ttl",
      "ttlSeconds": 123,
      "onError": "serve_stale"
    },
    "status": "active",
    "renderUrl": "<string>",
    "webhookUrl": "<string>",
    "createdAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

API key obtained from the Pictify dashboard

Path Parameters

uid
string
required

Response

200 - application/json

Binding details

binding
object