Ticket Forms

get

Get a list of ticket forms

Authorizations
Responses
200Success
application/json
get
GET /ticket-forms HTTP/1.1
Host: api.usepylon.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "data": [
    {
      "description_html": "text",
      "fields": [
        {
          "description_html": "text",
          "name": "text",
          "slug": "text",
          "type": "text"
        }
      ],
      "id": "text",
      "is_public": true,
      "name": "text",
      "slug": "text",
      "url": "text"
    }
  ],
  "pagination": {
    "cursor": "text",
    "has_next_page": true
  },
  "request_id": "text"
}

Last updated

Was this helpful?