POST api/Routing/ReferredLeadAssignment
Request Information
URI Parameters
None.
Body Parameters
ReferredLeadAssignmentRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PageNumber | integer |
None. |
|
| NumberOfRecords | integer |
None. |
|
| Requestor | string |
Required |
Request Formats
application/json, text/json
Sample:
{
"PageNumber": 1,
"NumberOfRecords": 2,
"Requestor": "sample string 3"
}
application/xml, text/xml
Sample:
<ReferredLeadAssignmentRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TMK.CSK.API.Models"> <Requestor>sample string 3</Requestor> <NumberOfRecords>2</NumberOfRecords> <PageNumber>1</PageNumber> </ReferredLeadAssignmentRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ReferredLeadAssignmentResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalAssigned | integer |
None. |
|
| StatusCode | integer |
None. |
|
| ErrorMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"TotalAssigned": 1,
"StatusCode": 2,
"ErrorMessage": "sample string 3"
}
application/xml, text/xml
Sample:
<ReferredLeadAssignmentResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TMK.CSK.API.Models"> <ErrorMessage>sample string 3</ErrorMessage> <StatusCode>2</StatusCode> <TotalAssigned>1</TotalAssigned> </ReferredLeadAssignmentResponse>