---
title: "Returns a single authorization by ID"
method: GET
path: "/booking/v1/authorizations/{id}"
tags: ["Authorization"]
---

# Returns a single authorization by ID

`GET /booking/v1/authorizations/{id}`

<br>You must have at least one of these scopes: 'authorizations.read, authorizations.manage'.

## Path parameters

- `id` string, required

## Query parameters

- `expand` string[]

## Response `200`

Successfully returned authorization

- AuthorizationModel
  - `id` string, required — Authorization id
  - `target` AuthorizationTargetModel, required
    - `type` 'Booking' | 'Reservation', required — Authorization target type
    - `id` string, required — Booking or reservation id
    - `propertyId` string, required — The id of the property the authorization is to be created for. When target is Reservation, the property must be the same the reservation.
  - `created` string, date-time, required — Date of creation<br />A date and time (without fractional second part) in UTC or with UTC offset as defined in <a href="https://en.wikipedia.org/wiki/ISO_8601">ISO8601:2004</a>
  - `updated` string, date-time, required — Date of last modification<br />A date and time (without fractional second part) in UTC or with UTC offset as defined in <a href="https://en.wikipedia.org/wiki/ISO_8601">ISO8601:2004</a>
  - `externalReference` ExternalAuthorizationReferenceModel
    - `paymentTransactionId` string, required — Identifies the payment authorization in the Payment Transaction API
  - `amount` MonetaryValueModel, required
    - `amount` number, double, required
    - `currency` string, required
  - `remainingBalance` MonetaryValueModel
    - `amount` number, double, required
    - `currency` string, required
  - `status` 'Pending' | 'Success' | 'Failure' | 'Canceled' | 'Expired' | 'RefreshPending', required — Status of the authorization
  - `failureReason` string, nullable — Human-readable failure reason
  - `payerInteraction` 'Terminal' | 'PaymentAccount' | 'Authorization' | 'PaymentLink', required — Payer interaction of the authorization
  - `expiresAt` string, date-time, nullable — The date and time the authorization expires<br />A date and time (without fractional second part) in UTC or with UTC offset as defined in <a href="https://en.wikipedia.org/wiki/ISO_8601">ISO8601:2004</a>
  - `paymentLinkUrl` string, nullable — The URL to the payment link when authorization is created by payment link
  - `actions` ActionModelAuthorizationActionNotAllowedAuthorizationActionReason[], nullable — The list of actions for authorization
    - `action` 'Cancel' | 'Refresh' | 'ExpirePaymentLink', required
    - `isAllowed` boolean, required
    - `reasons` ActionReasonModelNotAllowedAuthorizationActionReason[], nullable
      - `code` 'OnlySuccessfulAuthorizationCanBeCanceled' | 'OnlySuccessfulAuthorizationCanBeRefreshed' | 'NonActiveAuthorizationCanNotBeRefreshed' | 'OnlyPendingPaymentLinkAuthorizationCanBeExpired', required
      - `message` string, required

## Other responses

- `400` — Bad request.
- `401` — You are unauthorized.
- `403` — Forbidden.
- `404` — The Request-URI could not be found.
- `422` — Validation errors in the request body or query params.
- `499` — Client closed request.
- `500` — An unexpected error occurred.
- `503` — The server is currently unavailable. Please try later.

---

[API](https://skmtc.dev/apaleo/apis/apaleo-booking-api.md) · [All operations](https://skmtc.dev/apaleo/apis/apaleo-booking-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/apaleo/apaleo-booking-api/revisions/6510a7df7143/schema)
