Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Operation

Information of the operation

GET
https://{environment}.ulysescloud.com/public/api/{version}/chain/{chainId}/property/{propertyId}/pbx/{integrationId}/extensions


Request

PropertyTypeRequiredDefault valueDescription
chainIdIntegertrue
Unique identificator of the chain.
propertyIdIntegertrue
Unique identificator of the property.
integrationIdIntegertrue
Unique identificator of the Integration.
offsetIntegerfalse0Offset of the array of results.
limitIntegerfalse10Limit of results.
sortstringfalseidProperty of the entity to sort by.
sortModestringfalseAscMode of sorting.

Example request

GET https://prod.ulysescloud.com/public/api/v1/chain/1/property/3/pbx/9/extensions


Response

PropertyTypeRequiredDescription
PagePagetruePaged result

Entity


FieldTypeRequiredDescription
idinttrueUnique identifier for the extension.
extensionCodestringtrueExtension map
namestringtrueName of the extension.
spaceSpacefalseRelated Space to this extension.



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"
	  }
	}
  ]
}
  • No labels