POST api/FollowUp/Perform
Request Information
URI Parameters
None.
Body Parameters
PerformFollowUpVm| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| EndDateTime | date |
None. |
|
| Confirmation | string |
None. |
|
| Feedback | string |
None. |
|
| Lat | decimal number |
None. |
|
| Lng | decimal number |
None. |
|
| FollowUpStatusId | integer |
None. |
|
| Image1Url | string |
None. |
|
| Image2Url | string |
None. |
|
| Image3Url | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"EndDateTime": "2025-12-07T14:37:27.9336629Z",
"Confirmation": "sample string 3",
"Feedback": "sample string 4",
"Lat": 1.1,
"Lng": 1.1,
"FollowUpStatusId": 1,
"Image1Url": "sample string 5",
"Image2Url": "sample string 6",
"Image3Url": "sample string 7"
}
application/xml, text/xml
Sample:
<PerformFollowUpVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Services.Lead"> <Confirmation>sample string 3</Confirmation> <EndDateTime>2025-12-07T20:07:27.9336629+05:30</EndDateTime> <Feedback>sample string 4</Feedback> <FollowUpStatusId>1</FollowUpStatusId> <Id>1</Id> <Image1Url>sample string 5</Image1Url> <Image2Url>sample string 6</Image2Url> <Image3Url>sample string 7</Image3Url> <Lat>1.1</Lat> <Lng>1.1</Lng> </PerformFollowUpVm>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Response| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Description | string |
None. |
|
| Data | Object |
None. |
|
| Count | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Message": "sample string 2",
"Description": "sample string 3",
"Data": {},
"Count": 5
}
application/xml, text/xml
Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Models"> <Count>5</Count> <Data /> <Description>sample string 3</Description> <Message>sample string 2</Message> <Success>true</Success> </Response>