Skip to main content
PUT
/
users
/
@me
/
notes
/
{target_id}
Set note on user
curl --request PUT \
  --url https://api.fluxer.app/v1/users/@me/notes/{target_id} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "note": "<string>"
}
'
{
  "code": "ACCESS_DENIED",
  "message": "<string>",
  "errors": [
    {
      "path": "<string>",
      "message": "<string>",
      "code": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.

Path Parameters

target_id
string
required

The target id

Body

application/json
note
string | null

The note text (max 256 characters)

Response

No Content