View Categories

Ongoing Calls

Overview

ENDPOINT/admin/api/nexbro/v1/ongoing-calls
Methods SupportedGET
DescriptionThis endpoint is used to fetch ongoing calls list.

Response Codes

The following response codes are returned by the API.

HTTP CODESummaryDescription
200HTTP_OKReturned when the request is processed successfully.
500INTERNAL_SERVER_ERRORReturned 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"
        }
    ]
}