Creates or updates a private note on another user. The note is visible only to the authenticated user. Send null or empty string to delete an existing note.
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>"
}
]
}Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
The target id
The note text (max 256 characters)
No Content
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>"
}
]
}