Skip to main content
PATCH
/
channels
/
{channel_id}
/
call
Update call region
curl --request PATCH \
  --url https://api.fluxer.app/v1/channels/{channel_id}/call \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "region": "<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
region
string | null

The preferred voice region for the call (1-64 characters). Omit or set to null for automatic region selection.

Response

No Content