Skip to main content
GET
/
players
/
{playerId}
/
notes
Get all notes for a player
curl --request GET \
  --url https://mock-api.cevro.ai/v1/players/{playerId}/notes \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Session-ID: <x-session-id>'
{
  "notes": [
    {
      "id": "<string>",
      "type": "<string>",
      "text": "<string>",
      "created_by": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "pinned": true
    }
  ],
  "total": 123
}

Authorizations

Authorization
string
header
required

API Bearer token. For this demo, any non-empty string is accepted.

Headers

X-Session-ID
string
required

Path Parameters

playerId
string
required

Query Parameters

note_type
enum<string>

Filter by note type

Available options:
General,
Risk,
Support,
VIP
pinned_only
boolean

Show only pinned notes

Response

Notes retrieved successfully

notes
object[]
total
integer