POST api/UpdateFollowUp/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
UpdateFollowUpVm| Name | Description | Type | Additional information |
|---|---|---|---|
| Type | string |
None. |
|
| LeadActivityTypeId | integer |
None. |
|
| Title | string |
None. |
|
| Remark | string |
None. |
|
| StartDateTime | date |
None. |
|
| EndDateTime | date |
None. |
|
| Confirmation | string |
None. |
|
| IsPerformed | boolean |
None. |
|
| Feedback | string |
None. |
|
| UserId | integer |
None. |
|
| LeadId | integer |
None. |
|
| ProjectId | integer |
None. |
|
| ToBeReminded | boolean |
None. |
|
| ReminderOver | string |
None. |
|
| CheckIn | date |
None. |
|
| CheckOut | date |
None. |
|
| LocationAddress | string |
None. |
|
| LocationType | string |
None. |
|
| Image1Url | string |
None. |
|
| Image2Url | string |
None. |
|
| Image3Url | string |
None. |
|
| Lat | decimal number |
None. |
|
| Lng | decimal number |
None. |
|
| BookingId | integer |
None. |
|
| FollowUpStatusId | integer |
None. |
|
| SiteVisitType | string |
None. |
|
| Users | Collection of SiteVisitUserVm |
None. |
Request Formats
application/json, text/json
Sample:
{
"Type": "sample string 1",
"LeadActivityTypeId": 1,
"Title": "sample string 2",
"Remark": "sample string 3",
"StartDateTime": "2025-12-07T15:34:31.8358842Z",
"EndDateTime": "2025-12-07T15:34:31.8358842Z",
"Confirmation": "sample string 5",
"IsPerformed": true,
"Feedback": "sample string 7",
"UserId": 1,
"LeadId": 1,
"ProjectId": 1,
"ToBeReminded": true,
"ReminderOver": "sample string 9",
"CheckIn": "2025-12-07T15:34:31.8368984Z",
"CheckOut": "2025-12-07T15:34:31.8368984Z",
"LocationAddress": "sample string 12",
"LocationType": "sample string 13",
"Image1Url": "sample string 14",
"Image2Url": "sample string 15",
"Image3Url": "sample string 16",
"Lat": 1.1,
"Lng": 1.1,
"BookingId": 1,
"FollowUpStatusId": 1,
"SiteVisitType": "sample string 17",
"Users": [
{
"Id": 1,
"Name": "sample string 1"
},
{
"Id": 1,
"Name": "sample string 1"
}
]
}
application/xml, text/xml
Sample:
<UpdateFollowUpVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Services.Lead">
<BookingId>1</BookingId>
<CheckIn>2025-12-07T21:04:31.8368984+05:30</CheckIn>
<CheckOut>2025-12-07T21:04:31.8368984+05:30</CheckOut>
<Confirmation>sample string 5</Confirmation>
<EndDateTime>2025-12-07T21:04:31.8358842+05:30</EndDateTime>
<Feedback>sample string 7</Feedback>
<FollowUpStatusId>1</FollowUpStatusId>
<Image1Url>sample string 14</Image1Url>
<Image2Url>sample string 15</Image2Url>
<Image3Url>sample string 16</Image3Url>
<IsPerformed>true</IsPerformed>
<Lat>1.1</Lat>
<LeadActivityTypeId>1</LeadActivityTypeId>
<LeadId>1</LeadId>
<Lng>1.1</Lng>
<LocationAddress>sample string 12</LocationAddress>
<LocationType>sample string 13</LocationType>
<ProjectId>1</ProjectId>
<Remark>sample string 3</Remark>
<ReminderOver>sample string 9</ReminderOver>
<SiteVisitType>sample string 17</SiteVisitType>
<StartDateTime>2025-12-07T21:04:31.8358842+05:30</StartDateTime>
<Title>sample string 2</Title>
<ToBeReminded>true</ToBeReminded>
<Type>sample string 1</Type>
<UserId>1</UserId>
<Users>
<SiteVisitUserVm>
<Id>1</Id>
<Name>sample string 1</Name>
</SiteVisitUserVm>
<SiteVisitUserVm>
<Id>1</Id>
<Name>sample string 1</Name>
</SiteVisitUserVm>
</Users>
</UpdateFollowUpVm>
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>