Overview
| ENDPOINT | /admin/api/nexbro/v1/ongoing-calls |
| Methods Supported | GET |
| Description | This endpoint is used to fetch ongoing calls list. |
Response Codes
The following response codes are returned by the API.
| HTTP CODE | Summary | Description |
| 200 | HTTP_OK | Returned when the request is processed successfully. |
| 500 | INTERNAL_SERVER_ERROR | Returned when an unexpected error occurs on the server while processing the request. |
Example
cURL
Copy to clipboard
curl --location 'https://your-nexbro-domain.com/admin/api/nexbro/v1/ongoing-calls' \
--header 'Accept: application/json' \
--header 'X-API-KEY: sk_live_tTD9RQfK2q2pdsqIEIca53y3gkGll1brp0mWLMeG6vnmrDHYZ1ThOupslBHg'
Response
Copy to clipboard
{
"message": "Success.",
"data": [
{
"call_uuid": "fdbc7a24-fd0f-4f38-bf46-00bfd2589f48",
"caller_id_number": "235",
"destination_number": "445",
"call_direction": "INTERNAL",
"duration": "00:06:47",
"start_epoch": "1769580687"
}
]
}