outgoing_call_answer
Triggered when the remote party answers an outgoing call. This indicates the conversation has begun.
When This Event Fires
- The called party picks up the phone
- The call transitions from ringing to connected
Payload
| Field | Type | Description |
|---|---|---|
event | string | Always "outgoing_call_answer" |
caller | string | SIPSIM phone number that placed the call |
receiver | string | Remote party's phone number |
time | string | Timestamp of the event |
pbx_id | string | Unique call identifier in the PBX |
Example Payload
{
"event": "outgoing_call_answer",
"caller": "+33198765432",
"receiver": "+33612345678",
"time": "2025-01-15T14:00:08Z",
"pbx_id": "call_def456"
}
Call Lifecycle
outgoing_call_start— call initiatedoutgoing_call_answer— remote party answersoutgoing_call_end— call completed
tip
If the remote party does not answer, you will not receive this event. You will receive outgoing_call_end with a status like NOANSWER or BUSY.
Related Events
outgoing_call_start— when the call was placedoutgoing_call_end— when the call endsincoming_call_answer— equivalent event for incoming calls