GET api/ERP/Jobs/GetCallerListCBX?cusID={cusID}
Get dispatch location id
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| cusID |
Customer ID |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Dispatch location id
Collection of CallerType| Name | Description | Type | Additional 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>