Skip to main content
POST
/
players
/
{playerId}
/
notes
Create a new note for a player
curl --request POST \
  --url https://mock-api.cevro.ai/v1/players/{playerId}/notes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-Session-ID: <x-session-id>' \
  --data '
{
  "type": "General",
  "text": "Player contacted support regarding withdrawal delay",
  "pinned": false
}
'
{
  "success": true,
  "note_id": "<string>",
  "message": "<string>"
}

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

Body

application/json
type
enum<string>
required
Available options:
General,
Risk,
Support,
VIP
Example:

"General"

text
string
required
Example:

"Player contacted support regarding withdrawal delay"

pinned
boolean
Example:

false

Response

Note created successfully

success
boolean
note_id
string
message
string