Authorization
Creates a link to a payment form that allows guests to complete the authorization
<br>You must have this scope: 'authorizations.manage'.
post/booking/v1/authorizations/by-link
Headers
Idempotency-Keystring
Unique key for safely retrying requests without accidentally performing the same operation twice. We'll always send back the same response for requests made with the same key, and keys can't be reused with different request parameters. Keys expire after 24 hours.
Request body
Example request
{
"target": {
"type": "Booking",
"id": "KYKXKLWL",
"propertyId": "MUC"
},
"expiresAt": "2026-09-03T21:18:40.894436Z",
"countryCode": "DE",
"description": "Consumption authorization for the reservation",
"payerEmail": "0chai@hemenal5.space",
"amount": {
"amount": 150,
"currency": "EUR"
}
}Response
Authorization was created and will be processed
Example response
{
"id": "HDQFGFOS"
}Changes
No recorded changes to this endpoint across all 1 revision of this API.