POST api/JobPosts/GetStatusOfProspects
Request Information
URI Parameters
None.
Body Parameters
ProspectContact| Name | Description | Type | Additional information |
|---|---|---|---|
| Contact | string |
None. |
|
| EmailID | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Contact": "sample string 1",
"EmailID": "sample string 2"
}
application/xml, text/xml
Sample:
<ProspectContact xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SoftbreaksAPI.Models"> <Contact>sample string 1</Contact> <EmailID>sample string 2</EmailID> </ProspectContact>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ProspectStatus| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | boolean |
None. |
|
| LastUseDate | string |
None. |
|
| LastUseTime | string |
None. |
|
| IsCallSuccessful | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": true,
"LastUseDate": "sample string 2",
"LastUseTime": "sample string 3",
"IsCallSuccessful": true,
"Message": "sample string 5"
}
application/xml, text/xml
Sample:
<ProspectStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SoftbreaksAPI.Models"> <IsCallSuccessful>true</IsCallSuccessful> <Message>sample string 5</Message> <LastUseDate>sample string 2</LastUseDate> <LastUseTime>sample string 3</LastUseTime> <Status>true</Status> </ProspectStatus>