Events


Retrieve Events

POST/api/[...]/events

This endpoint allows you to retrieve event information.

Supported Authentication Types

API TokenClient TokenGrant Token
YesYes?

Optional Body Attributes

  • Name
    event_name
    Type
    String
    Description

    Event Name. If entered, events will be searched and results containing the string will be returned.

Response

{
    "status": "success",
    "request": {
        "event_name": "Flight"
    },
    "data": {
        {
            "id": 14434,
            "name": "DELIVERY FLIGHT 12",
            "tag": null,
            "subtype": null,
            "image": "https://cdn.vamsys.xyz/phoenixMediaStore/event/74251/DEL-FLIGHT.png",
            "points": "1000",
            "focusAirport": false,
            "markdown": "We once again take our voyage from Boeing Field, Seattle to Dublin in our biggest event of the calendar. The vRYR Delivery Flight.",
            "link": "https://staff.vamsys.dev/phoenix/events/14434?va=RYR3"
        },
        [...]
    }
}