Retrieve event providers

This endpoint allows you to retrieve a list of all available event providers.

Endpoint

Live

GET https://business.festivalcadeau.com/api/endpoint/v1/get_providers

Sandbox

GET https://business.festivalcadeautestsite.nl/api/endpoint/v1/get_providers

Authentication

No authentication is required to access this endpoint.

Request Parameters

This endpoint does not require any request parameters.

Response

The response to a successful request is a JSON array of ticket provider objects, where each object contains an id and a name field:

[
    {
        "id": 1,
        "name": "ActiveTickets"
    },
    {
        "id": 2,
        "name": "TicketMaster"
    },
    ...
]

If there are no event providers available, the response will be an empty JSON array [].

Example Request

GET https://business.festivalcadeau.com/api/endpoint/v1/get_providers

Example Response

HTTP/1.1 200 OK
Content-Type: application/json

[
    {
        "id": 1,
        "name": "ActiveTickets"
    },
    {
        "id": 2,
        "name": "TicketMaster"
    },
    ...
]