POST api/StartMeetingActivity
Request Information
URI Parameters
None.
Body Parameters
StartMeetingActivityPostVm| Name | Description | Type | Additional information |
|---|---|---|---|
| LeadId | integer |
None. |
|
| ChannelPartnerId | integer |
None. |
|
| FollowupId | integer |
None. |
|
| CheckIn | date |
None. |
|
| Lat | decimal number |
None. |
|
| Lng | decimal number |
None. |
|
| LocationAddress | string |
None. |
|
| LocationType | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"LeadId": 1,
"ChannelPartnerId": 1,
"FollowupId": 1,
"CheckIn": "2025-12-07T15:34:59.7113228Z",
"Lat": 1.1,
"Lng": 1.1,
"LocationAddress": "sample string 2",
"LocationType": "sample string 3"
}
application/xml, text/xml
Sample:
<StartMeetingActivityPostVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Services.Lead"> <ChannelPartnerId>1</ChannelPartnerId> <CheckIn>2025-12-07T21:04:59.7113228+05:30</CheckIn> <FollowupId>1</FollowupId> <Lat>1.1</Lat> <LeadId>1</LeadId> <Lng>1.1</Lng> <LocationAddress>sample string 2</LocationAddress> <LocationType>sample string 3</LocationType> </StartMeetingActivityPostVm>
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>