Skip to main content
GET
/
books
/
{id}
Get book by Id
curl --request GET \
  --url https://api.market.iventou.com.br/books/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "Resale book for Halloween VIP",
  "event_name": "Halloween",
  "ticket_name": "VIP",
  "ticket_type": "FULL",
  "start_date": "2023-11-07T05:31:56Z",
  "end_date": "2023-11-07T05:31:56Z",
  "group": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>"
  },
  "queue": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>"
  },
  "purchase_approval_webhook": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "url": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Token from partner authetnication

Path Parameters

id
string
required

Response

200 - application/json

Book retrieved successful

id
string<uuid>
required
name
string
required
Minimum length: 3
Example:

"Resale book for Halloween VIP"

event_name
string
required
Minimum length: 3
Example:

"Halloween"

ticket_name
string
required
Minimum length: 3
Example:

"VIP"

ticket_type
enum<string>
required
Available options:
FULL,
HALF,
COMPLIMENTARY
start_date
string<date-time>
required
end_date
string<date-time>
required
purchase_approval_webhook
object
required
group
object
queue
object