Skip to main content
POST
/
users
/
@me
/
saved-messages
Save message
curl --request POST \
  --url https://api.fluxer.app/v1/users/@me/saved-messages \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "channel_id": "<string>",
  "message_id": "<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.

Body

application/json
channel_id
string<snowflake>
required
message_id
string<snowflake>
required

Response

No Content