Skip to content

Get All Events

Request

Get all events the current API user can manage.
To specify events with identifier please provide ?identifier= in the URL param
By default, 50 are returned, you can use up to max=10000 in the URL param

Security
X-API-KEY or Authorization
curl -i -X GET \
  https://uberall.com/api/events \
  -H 'X-API-KEY: YOUR_API_KEY_HERE'

Responses

Events successfully retrieved

Body*/*
statusstringrequired
Enum:"SUCCESS""PENDING""QUOTA_LIMIT_EXCEED""NOT_AUTHORIZED""FORBIDDEN""BAD_ACCESS_TOKEN""BAD_PRIVATE_KEY""BAD_PUBLIC_KEY""MISSING_PARAMETER""INVALID_PARAMETER"
messagestring

(optional) Holds further information about the response

warningsArray of strings

(optional) Holds further warnings

responseobjectrequired

The actual response object of the response

Response
{
  "status": "SUCCESS",
  "message": "string",
  "warnings": [
    "string"
  ],
  "response": {
    "offset": 0,
    "max": 10,
    "total": 100,
    "events": [
      {
        "title": "string",
        "description": "string",
        "identifier": "string",
        "listName": "string",
        "timeStart": "2019-08-24T14:15:22Z",
        "timeEnd": "2019-08-24T14:15:22Z",
        "video": {
          "id": 0,
          "url": "string",
          "description": "string",
          "type": "YOUTUBE"
        },
        "url": "string"
      }
    ]
  }
}