Skip to main content
GET
/
clients
/
{id}
/
events
Retrieves all events associated with a specific client.
curl --request GET \
  --url https://api.example.com/clients/{id}/events
[
  {
    "id": 123,
    "startDate": "2023-11-07T05:31:56Z",
    "type": 1,
    "description": "<string>",
    "clientId": 123
  }
]

Path Parameters

id
integer<int32>
required

The unique identifier of the client.

Response

Successfully retrieved the client events.

id
integer<int32>
startDate
string<date-time>
type
enum<integer>
Available options:
1,
2
description
string | null
clientId
integer<int32>