PBXExtension List [GET]
Operation
Information of the operation
GET
https://{environment}.ulysescloud.com/public/api/{version}/con/chain/{chainId}/property/{propertyId}/pbx/{integrationId}/extensions
Request
Property | Type | Required | Type parameter | Default value | Description |
---|---|---|---|---|---|
chainId | Integer | true | path parameter | Unique identificator of the chain. | |
propertyId | Integer | true | path parameter | Unique identificator of the property. | |
integrationId | Integer | true | path parameter | Unique identificator of the Integration. | |
offset | Integer | false | request parameter | 0 | Offset of the array of results. |
limit | Integer | false | request parameter | 10 | Limit of results. |
sort | string | false | request parameter | id | Property of the entity to sort by. |
sortMode | string | false | request parameter | Asc | Mode of sorting. |
Example request
GET https://publicapi-providers.ulysescloud.com:9797/public/api/v1/con/chain/1/property/3/pbx/9/extensions
Example response
{ "count": 2, "offset": 0, "limit": 10, "list": [ { "id": 1, "extensionCode": "COD1", "name": "Extension 1", "space": null }, { "id": 1, "extensionCode": "COD1", "name": "Extension 1", "space": { "id": 1, "name": "Space 1", "code": "SP1" } } ] }