GET api/ERP/Jobs/GetConfirmedListCBX?cusID={cusID}

Get dispatch location id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
cusID

Customer ID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Dispatch location id

Collection of CallerType
NameDescriptionTypeAdditional information
ContactID

integer

None.

ContactInfo

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ContactID": 1,
    "ContactInfo": "sample string 1"
  },
  {
    "ContactID": 1,
    "ContactInfo": "sample string 1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCallerType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessObjects.ERP">
  <CallerType>
    <ContactID>1</ContactID>
    <ContactInfo>sample string 1</ContactInfo>
  </CallerType>
  <CallerType>
    <ContactID>1</ContactID>
    <ContactInfo>sample string 1</ContactInfo>
  </CallerType>
</ArrayOfCallerType>