PATCH api/site/{SiteID}/EndPoint/{EndPointID}/Numbers/{EndPointNumberID}/properties

Updates properties for an Endpoint Number

Error Messages

Request Information

URI Parameters

NameDescriptionTypeAdditional information
SiteID The Site ID that will return all End Points owned by that company integer

Required

EndPointID The End Point ID in the order service integer

Required

EndPointNumberID Endpoint Number ID integer

Required

Body Parameters

Collection of EndPointNumberPropertyUpdate
NameDescriptionTypeAdditional information
EPNPropertyID ID of property to be updated integer

None.

PropertyValue New value string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "EPNPropertyID": 1,
    "PropertyValue": "sample string 2"
  },
  {
    "EPNPropertyID": 1,
    "PropertyValue": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfEndPointNumberPropertyUpdate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/aBILLity.API.Models">
  <EndPointNumberPropertyUpdate>
    <EPNPropertyID>1</EPNPropertyID>
    <PropertyValue>sample string 2</PropertyValue>
  </EndPointNumberPropertyUpdate>
  <EndPointNumberPropertyUpdate>
    <EPNPropertyID>1</EPNPropertyID>
    <PropertyValue>sample string 2</PropertyValue>
  </EndPointNumberPropertyUpdate>
</ArrayOfEndPointNumberPropertyUpdate>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.