GET
/
ticket-rates
/
{id}
/
pricing-info
curl --request GET \
  --url https://channels-service-alpha.fourvenues.com/ticket-rates/{id}/pricing-info \
  --header 'X-Api-Key: <api-key>'
{
  "data": [
    {
      "price_id": "priceabcde12345",
      "ticket_type_id": "abcde12345",
      "price": 10,
      "fee_type": "percentage",
      "fee_quantity": 7
    }
  ],
  "success": true
}

Authorizations

X-Api-Key
string
header
required

Path Parameters

id
string
required

Ticket rate id

Example:

"abcde12345"

Query Parameters

quantity
number
required

Quantity of tickets to retrieve the pricing information

Example:

2

Response

200
application/json
OK
data
object[]
success
boolean