POST api/PromotionActivity/ActiveProof
推广活动现场举证
Request Information
URI Parameters
None.
Body Parameters
ActiveProofDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Remark | string |
None. |
|
| MS418TID | globally unique identifier |
None. |
|
| LNG | decimal number |
None. |
|
| LAT | decimal number |
None. |
|
| Location | string |
None. |
|
| Photos | Collection of string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Photos": [
"sample string 1",
"sample string 2"
],
"Remark": "sample string 1",
"MS418TID": "3bc1aa37-de82-42a0-831e-b21ef4fc7f8f",
"LNG": 1.0,
"LAT": 1.0,
"Location": "sample string 3"
}
application/xml, text/xml
Sample:
<ActiveProofDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JT.VSFA.Entity">
<LAT>1</LAT>
<LNG>1</LNG>
<Location>sample string 3</Location>
<MS418TID>3bc1aa37-de82-42a0-831e-b21ef4fc7f8f</MS418TID>
<Photos xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</Photos>
<Remark>sample string 1</Remark>
</ActiveProofDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultModelOfBoolean| Name | 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>