Skip to main content
GET
/
bindings
List bindings
curl --request GET \
  --url https://api.pictify.io/bindings \
  --header 'Authorization: Bearer <token>'
{
  "bindings": [
    {
      "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"
    }
  ],
  "pagination": {
    "page": 123,
    "limit": 123,
    "total": 123,
    "totalPages": 123,
    "hasNext": true,
    "hasPrev": true
  }
}

Authorizations

Authorization
string
header
required

API key obtained from the Pictify dashboard

Query Parameters

templateId
string
status
enum<string>
Available options:
active,
paused,
error
page
integer
default:1
limit
integer
default:20

Response

200 - application/json

List of bindings

bindings
object[]
pagination
object