Authorization
Returns a single authorization by ID
<br>You must have at least one of these scopes: 'authorizations.read, authorizations.manage'.
get/booking/v1/authorizations/{id}
Path parameters
idstring required
The identifier of the authorization
Query parameters
expandstring[]
List of all embedded resources that should be expanded in the response. Possible values are: actions. All other values will be silently ignored.
Response
Successfully returned authorization
Example response
{
"id": "IUSENHBB",
"target": {
"type": "Booking",
"id": "KYKXKLWL",
"propertyId": "MUC"
},
"created": "2026-09-01T21:18:40.9105098Z",
"updated": "2026-09-01T21:18:40.910511Z",
"externalReference": {
"paymentTransactionId": "VT6G6BFUR6XE5MHZARAX2ODK7Y"
},
"amount": {
"amount": 150,
"currency": "EUR"
},
"remainingBalance": {
"amount": 100,
"currency": "EUR"
},
"status": "Success",
"payerInteraction": "PaymentAccount",
"expiresAt": "2026-10-01T21:18:40.9105129Z",
"actions": [
{
"action": "Cancel",
"isAllowed": false,
"reasons": [
{
"code": "OnlySuccessfulAuthorizationCanBeCanceled",
"message": "Only a successful authorization can be canceled."
}
]
},
{
"action": "Refresh",
"isAllowed": true
},
{
"action": "ExpirePaymentLink",
"isAllowed": false,
"reasons": [
{
"code": "OnlyPendingPaymentLinkAuthorizationCanBeExpired",
"message": "Only pending payment link authorization can be expired."
}
]
}
]
}Changes
No recorded changes to this endpoint across all 1 revision of this API.