Skip to main content
GET
/
tickets
/
{ticket}
Retrieve a ticket
curl --request GET \
  --url https://api.givebutter.com/v1/tickets/{ticket} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "id_suffix": "<string>",
  "transaction_id": "<string>",
  "name": "<string>",
  "first_name": "<string>",
  "last_name": "<string>",
  "email": "<string>",
  "phone": "<string>",
  "title": "<string>",
  "description": "<string>",
  "price": 123,
  "pdf": "<string>",
  "checked_in_at": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>",
  "retail_price": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

ticket
string | null
required

The ticket uid

Response

TicketResource

id
string
required
id_suffix
string
required
transaction_id
string
required
name
string
required
first_name
string
required
last_name
string
required
email
string
required
phone
string
required
title
string
required
description
string
required
price
number
required
pdf
string
required
checked_in_at
string
required
created_at
string
required
updated_at
string
required
retail_price
string | null
required