latestOpenAPI 3.1.12026-08-108026304.2 KB

7b222e8ec91c

Holds

Update a hold

Updates an existing hold

post/v1/holds/{hold_id}

Path parameters

hold_idstring required

The unique identifier for the hold

Response

Successfully updated the hold

objectstring
idstring

A unque identifier for the hold

event_idstring

ID of the event that the hold belongs to

notestring

A note for the hold

total_on_holdinteger

Total number of tickets on hold

Example response

{
  "object": "hold",
  "id": "ho_1",
  "created_at": {
    "date": "2020-05-01",
    "formatted": "Fri 1 May 2020 10:30 PM",
    "iso": "2020-05-01T22:30:00+01:00",
    "time": "22:30",
    "timezone": "+01:00",
    "unix": 1588368600
  },
  "note": "This is the note about the hold",
  "total_on_hold": 6,
  "update_at": {
    "date": "2020-05-01",
    "formatted": "Fri 1 May 2020 10:30 PM",
    "iso": "2020-05-01T22:30:00+01:00",
    "time": "22:30",
    "timezone": "+01:00",
    "unix": 1588368600
  },
  "quantities": [
    {
      "ticket_type_id": "tt_1",
      "quantity": 1
    },
    {
      "ticket_type_id": "tt_2",
      "quantity": 5
    }
  ]
}