POST api/Meeting/CreateMeetingProof
创建会议举证
Request Information
URI Parameters
None.
Body Parameters
CreateMeetingProofDtoName | Description | Type | Additional information |
---|---|---|---|
MeetingID | globally unique identifier |
None. |
|
Remark | string |
None. |
|
LAT | decimal number |
None. |
|
LNG | decimal number |
None. |
|
Address | string |
None. |
|
Images | Collection of string |
None. |
Request Formats
application/json, text/json
Sample:
{ "MeetingID": "5dfbc470-f226-463a-a8fc-904ba8dbb330", "Remark": "sample string 2", "LAT": 3.0, "LNG": 4.0, "Address": "sample string 5", "Images": [ "sample string 1", "sample string 2" ] }
application/xml, text/xml
Sample:
<CreateMeetingProofDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JT.VSFA.Entity"> <Address>sample string 5</Address> <Images xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:string>sample string 1</d2p1:string> <d2p1:string>sample string 2</d2p1:string> </Images> <LAT>3</LAT> <LNG>4</LNG> <MeetingID>5dfbc470-f226-463a-a8fc-904ba8dbb330</MeetingID> <Remark>sample string 2</Remark> </CreateMeetingProofDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultModelOfBooleanName | Description | Type | Additional information |
---|---|---|---|
Code | ReturnCode |
None. |
|
Message | string |
None. |
|
Data | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "Code": 200, "Message": "sample string 1", "Data": true }
application/xml, text/xml
Sample:
<ResultModelOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JT.VSFA.Utility"> <Code>Success</Code> <Data>true</Data> <Message>sample string 1</Message> </ResultModelOfboolean>