Skip to main content
POST
/
channels
/
{channel_id}
/
call
/
stop-ringing
Stop ringing call recipients
curl --request POST \
  --url https://api.fluxer.app/v1/channels/{channel_id}/call/stop-ringing \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "recipients": [
    "<string>"
  ]
}
'
{
  "code": "ACCESS_DENIED",
  "message": "<string>",
  "errors": [
    {
      "path": "<string>",
      "message": "<string>",
      "code": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

User session token from login: Authorization: <token> (no prefix). Prefer a bot account over user tokens where possible.

Path Parameters

channel_id
string<snowflake>
required

The ID of the channel

Body

application/json
recipients
string<snowflake>[]

User IDs to ring for the call

Response

No Content