cURL
curl --request GET \ --url https://api.aspect-dev.systems/v1/organizations/{organization}/reservations/{id} \ --header 'Authorization: Bearer <token>'
{ "data": { "id": "<string>", "type": "reservations", "attributes": { "id": "<string>", "code": "<string>", "state": "pending", "channel": "online", "start_at": "<string>", "price": 123, "created_at": "<string>", "updated_at": "<string>" }, "relationships": { "division": { "data": { "type": "divisions", "id": "<string>" } }, "entries": { "data": [ { "type": "entries", "id": "<string>" } ] } } }, "included": [ { "id": "<string>", "type": "divisions", "attributes": { "id": "<string>", "name": "<string>", "industry": "golf" } } ] }
Retrieve a specific reservation by its ID.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Available includes are division, entries. You can include multiple options by separating them with a comma.
division
entries
ReservationResource
Show child attributes