PPylon Developers
ApiEvents

Get event by ID

Returns detailed information about a specific event.

GET
/api/v1/events/{id}
AuthorizationBearer <token>

Enter your bearer token from the Pylon Auth API.

In: header

Path Parameters

id*string
Formatuuid

Response Body

application/json

application/json

application/problem+json

curl -X GET "https://loading/api/v1/events/497f6eca-6276-4993-bfeb-53cbbbba6f08"
{
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "organizerId": "09df302f-1d0c-4f3f-9806-1eb469cadfb3",
  "name": "string",
  "slug": "string",
  "description": null,
  "category": "string",
  "status": "string",
  "onSaleAt": "2019-08-24T14:15:22Z",
  "offSaleAt": "2019-08-24T14:15:22Z",
  "checkoutMode": "string",
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z",
  "sessions": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "venueId": "ff212efe-8b09-4400-9323-a587c102bdd0",
      "startAt": "2019-08-24T14:15:22Z",
      "endAt": "2019-08-24T14:15:22Z",
      "doorsOpenAt": "2019-08-24T14:15:22Z",
      "status": "string",
      "capacity": 0,
      "soldCount": 0,
      "availableCount": 0
    }
  ],
  "ticketTypes": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "name": "string",
      "description": null,
      "price": 0.1,
      "currency": "string",
      "quantity": 0,
      "soldCount": 0,
      "availableCount": 0,
      "maxPerOrder": 0,
      "saleStartAt": "2019-08-24T14:15:22Z",
      "saleEndAt": "2019-08-24T14:15:22Z",
      "status": "string",
      "sortOrder": 0
    }
  ]
}
{
  "code": "string",
  "message": "string"
}
{
  "code": "string",
  "message": "string"
}