On Clicking the Close Button of the Call Card BackgroundCallCard::closeButtonClick
If you are developing integrations for Bitrix24 using AI tools (Codex, Claude Code, Cursor), connect to the MCP server so that the assistant can utilize the official REST documentation.
Scope:
telephonyWho can subscribe: any user
The event BackgroundCallCard::closeButtonClick is triggered when the operator clicks the close button of the call card.
The event operates within the application context in the PAGE_BACKGROUND_WORKER placement.
What the Handler Receives
No data is passed to the event handler.
Event Subscription Parameters
Required parameters are marked with *
|
Name |
Description |
|
PLACEMENT* |
The name of the interface event. For this event — |
|
HANDLER* |
The URL of the event handler for calling |
Code Examples
How to Use Examples in Documentation
curl -X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"PLACEMENT":"BackgroundCallCard::closeButtonClick","HANDLER":"**your_handler_url_here**"}' \
"https://**put_your_bitrix24_address**/rest/placement.bindEvent?auth=**put_access_token_here**"
BX24.placement.bindEvent('BackgroundCallCard::closeButtonClick', function (eventData) {
console.log(eventData);
});
try {
$response = $b24Service
->core
->call(
'placement.bindEvent',
[
'PLACEMENT' => 'BackgroundCallCard::closeButtonClick',
'HANDLER' => '**your_handler_url_here**'
]
);
$result = $response
->getResponseData()
->getResult();
echo 'Success: ' . print_r($result, true);
processData($result);
} catch (Throwable $e) {
error_log($e->getMessage());
echo 'Error: ' . $e->getMessage();
}
BX24.callMethod(
'placement.bindEvent',
{
PLACEMENT: 'BackgroundCallCard::closeButtonClick',
HANDLER: '**your_handler_url_here**'
},
function(result)
{
if (result.error())
{
console.error(result.error(), result.error_description());
}
else
{
console.log(result.data());
}
}
);
require_once('crest.php');
$result = CRest::call(
'placement.bindEvent',
[
'PLACEMENT' => 'BackgroundCallCard::closeButtonClick',
'HANDLER' => '**your_handler_url_here**'
]
);
echo '<PRE>';
print_r($result);
echo '</PRE>';