Skip to main content

Remove Ticket Buyer IDs

Removes one or more ticket buyer IDs from the list of allowed ticket buyers for your company account.

Each ticket buyer ID must be a valid UUID, a universally unique identifier in standard format (e.g. d2e8e3d1-4f3c-4f50-8c7d-52e654bb2cd1).

Note

You need to authenticate with your company admin key for this API call.

DELETE https://api-{region}.seatsio.net/ticket-buyers

Request

{
"ids": [
"fbbbc8d7-1067-432c-b71f-abefe29b3be9",
"6ad35155-8b8c-4a6b-ae43-57bf2411dcd9",
"09de834d-02ef-41f0-947f-47c1c1a906d6"
]
}

The request body should be a JSON object containing a single property ids.

  • ids (array): the ticket buyer IDs you want to remove. Each ID must be a valid UUID. You can remove up to 1000 IDs per request. If you send more than 1000, the request will be rejected.

Response

{
"removed": [
"fbbbc8d7-1067-432c-b71f-abefe29b3be9",
"6ad35155-8b8c-4a6b-ae43-57bf2411dcd9"
],
"notPresent": [
"09de834d-02ef-41f0-947f-47c1c1a906d6"
]
}