Booking Discount

Show booking discounts

GET/v1/bookings/{booking}/discounts
Authorization
Path parameters
booking*string (uuid)

The resource

Header parameters
Response

The request has been successful

Request
const response = await fetch('/v1/bookings/{booking}/discounts', {
    method: 'GET',
    headers: {
      "Authorization": "Bearer JWT"
    },
});
const data = await response.json();

Last updated