Skip to main content
GET
/
v1
/
public
/
finance
/
bookings
/
{bookingId}
/
payment-options
Get a booking's payment options
curl --request GET \
  --url https://{operatorDomain}/v1/public/finance/bookings/{bookingId}/payment-options
{
  "data": [
    {
      "kind": "deposit",
      "amountCents": 30000,
      "currency": "EUR",
      "label": "Pay deposit",
      "scheduleId": "<string>",
      "guaranteeId": "<string>"
    }
  ]
}

Path Parameters

bookingId
string
required

Response

200 - application/json

Payment options

data
object[]