Sends ringing notifications to specified users in a call. If no recipients are specified, rings all channel members.
curl --request POST \
--url https://api.fluxer.app/v1/channels/{channel_id}/call/ring \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"recipients": [
"<string>"
]
}
'{
"code": "ACCESS_DENIED",
"message": "<string>",
"errors": [
{
"path": "<string>",
"message": "<string>",
"code": "<string>"
}
]
}User session token from login: Authorization: <token> (no prefix). Prefer a bot account over user tokens where possible.
The ID of the channel
User IDs to ring for the call
No Content
curl --request POST \
--url https://api.fluxer.app/v1/channels/{channel_id}/call/ring \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"recipients": [
"<string>"
]
}
'{
"code": "ACCESS_DENIED",
"message": "<string>",
"errors": [
{
"path": "<string>",
"message": "<string>",
"code": "<string>"
}
]
}