GET api/Common/GetAllContactsLists?providerID={providerID}&agentID={agentID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| providerID | integer |
Required |
|
| agentID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ContactList| Name | Description | Type | Additional information |
|---|---|---|---|
| ListID | string |
None. |
|
| ListName | string |
None. |
Response Formats
application/json, text/json, text/html
Sample:
[
{
"ListID": "sample string 1",
"ListName": "sample string 2"
},
{
"ListID": "sample string 1",
"ListName": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfContactList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SellersCommerce.Entities.Communication">
<ContactList>
<ListID>sample string 1</ListID>
<ListName>sample string 2</ListName>
</ContactList>
<ContactList>
<ListID>sample string 1</ListID>
<ListName>sample string 2</ListName>
</ContactList>
</ArrayOfContactList>