Skip to main content
PUT
/
players
/
{playerId}
/
notes
/
{noteId}
Update an existing note
curl --request PUT \
  --url https://mock-api.cevro.ai/v1/players/{playerId}/notes/{noteId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-Session-ID: <x-session-id>' \
  --data '
{
  "type": "General",
  "text": "<string>",
  "pinned": true
}
'

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
noteId
string
required

Body

application/json
type
enum<string>
Available options:
General,
Risk,
Support,
VIP
text
string
pinned
boolean

Response

Note updated successfully