View Categories

Extensions

Overview

ENDPOINT/admin/api/nexbro/v1/call/extensions
Methods SupportedGET
DescriptionThis endpoint is used to retrieve the list of extensions configured in Nexbro, including user extensions, queue extensions, IVR menu extensions, ring group extensions, and more.

Response Codes

The following response codes are returned by the API.

HTTP CODESummaryDescription
200HTTP_OKReturned when the extensions fetch request is processed successfully.
500INTERNAL_SERVER_ERRORReturned when an unexpected error occurs on the server while processing the request.

Example

GET https://nexbro.com/admin/api/nexbro/v1/extensions
{
        "message": "Success.",
        "data": {
                "extensions": [
                        1000,
                        1001,
                        1002,
                        1003,
                        1004
                ],
                "queues": [
                        "2000",
                        "2001",
                        "2002",
                        "2003",
                        "2004"
                ],
                "ivr_menus": [
                        "3000",
                        "3001",
                        "3002",
                        "3003",
                        "3004"
                ],
                "ring_groups": [
                        "4000",
                        "4001",
                        "4002",
                        "4003",
                        "4004"
                ]
        }
}