Operation
Information of the operation
GET
https://{environment}.ulysescloud.com/public/api/{version}/chain/{chainId}/property/{propertyId}/pbx/{integrationId}/extensions
Request
Property | Type | Required | Default value | Description |
---|---|---|---|---|
chainId | Integer | true | Unique identificator of the chain. | |
propertyId | Integer | true | Unique identificator of the property. | |
integrationId | Integer | true | Unique identificator of the Integration. | |
offset | Integer | false | 0 | Offset of the array of results. |
limit | Integer | false | 10 | Limit of results. |
sort | string | false | id | Property of the entity to sort by. |
sortMode | string | false | Asc | Mode of sorting. |
Example request
GET https://prod.ulysescloud.com/public/api/v1/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" } } ] }