Ticket Forms

Get a list of ticket forms

get

/ticket-forms

Authorizations
Responses
curl -L \
  --url 'https://api.usepylon.com/ticket-forms' \
  --header 'Authorization: Bearer JWT'
{
  "pagination": {
    "cursor": "text",
    "has_next_page": true
  },
  "request_id": "text",
  "data": [
    {
      "description_html": "text",
      "id": "text",
      "is_public": true,
      "name": "text",
      "slug": "text",
      "url": "text",
      "fields": [
        {
          "description_html": "text",
          "name": "text",
          "slug": "text",
          "type": "text"
        }
      ]
    }
  ]
}

Last updated

Was this helpful?