# Get single event

You can return a list of specific event occurrences.

GET /events/:id/

Attributes Type Required Description
id integer yes A unique identifier for the event which is given by User.com automatically.

# Request

  • CURL
  • JavaScript
  • PHP
  • Python
curl -X GET -H
"Authorization: Token \<your_64_char_api_key>"
"https://<your_app_subdomain>.user.com/api/public/events/:id/"

# Response

{
  "count": 1,
  "next": null,
  "previous": null,
  "results": [
    {
      "id": 10286,
      "client": 606635,
      "timestamp": "2016-08-16T08:35:10.355853Z",
      "items": [
        {
          "name": "somedata",
          "value": "True"
        }
      ]
    }
  ]
}