Reject call
post /realtime/calls/{call_id}/reject
Reject call
Path Parameters
call_id: string
Body Parameters
-
status_code: optional numberSIP response code to send back to the caller. Defaults to
603(Decline) when omitted.
Example
curl https://api.openai.com/v1/realtime/calls/$CALL_ID/reject \
-X POST \
-H "Authorization: Bearer $OPENAI_API_KEY"
Example
curl -X POST https://api.openai.com/v1/realtime/calls/$CALL_ID/reject \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{"status_code": 486}'