PPylon Developers
ApiTickets

Set attendee information

Sets or updates the attendee information for a ticket. The ticket holder can set who will actually attend the event.

POST
/api/v1/tickets/{id}/attendee
AuthorizationBearer <token>

Enter your bearer token from the Pylon Auth API.

In: header

Path Parameters

id*string
Formatuuid

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/problem+json

curl -X POST "https://loading/api/v1/tickets/497f6eca-6276-4993-bfeb-53cbbbba6f08/attendee" \  -H "Content-Type: application/json" \  -d '{    "firstName": "string",    "lastName": "string",    "email": null,    "phone": null  }'
{
  "ticketId": "e3e3e8ea-b02a-4536-85a2-a9c90f4ee74f"
}
{
  "code": "string",
  "message": "string"
}
{
  "code": "string",
  "message": "string"
}