POST api/EndMeetingActivity
Request Information
URI Parameters
None.
Body Parameters
EndMeetingActivityPostVm| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| CheckOut | date |
None. |
|
| Remark | string |
None. |
|
| Feedback | string |
None. |
|
| ImageUrl | string |
None. |
|
| SeniorAttendantId | integer |
None. |
|
| Lat | decimal number |
None. |
|
| Lng | decimal number |
None. |
|
| LocationAddress | string |
None. |
|
| LocationType | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"CheckOut": "2026-05-21T13:23:45.4468859Z",
"Remark": "sample string 3",
"Feedback": "sample string 4",
"ImageUrl": "sample string 5",
"SeniorAttendantId": 1,
"Lat": 1.1,
"Lng": 1.1,
"LocationAddress": "sample string 6",
"LocationType": "sample string 7"
}
application/xml, text/xml
Sample:
<EndMeetingActivityPostVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Services.Lead"> <CheckOut>2026-05-21T13:23:45.4468859+00:00</CheckOut> <Feedback>sample string 4</Feedback> <Id>1</Id> <ImageUrl>sample string 5</ImageUrl> <Lat>1.1</Lat> <Lng>1.1</Lng> <LocationAddress>sample string 6</LocationAddress> <LocationType>sample string 7</LocationType> <Remark>sample string 3</Remark> <SeniorAttendantId>1</SeniorAttendantId> </EndMeetingActivityPostVm>
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>