POST api/PromotionActivity/AuditPromotionActivity
审核推广活动执行
Request Information
URI Parameters
None.
Body Parameters
AuditPromotionActivityDto| Name | Description | Type | Additional information |
|---|---|---|---|
| ActivityID | globally unique identifier |
None. |
|
| StatusKey | string |
None. |
|
| StartProofGold | decimal number |
None. |
|
| EndProofGold | decimal number |
None. |
|
| SceneProofGold | decimal number |
None. |
|
| TasteGold | decimal number |
None. |
|
| SalesGold | decimal number |
None. |
|
| PunishGold | decimal number |
None. |
|
| PunishRemark | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ActivityID": "a29bd306-6fa2-4f32-9a92-fe8701f375c7",
"StatusKey": "sample string 1",
"StartProofGold": 1.0,
"EndProofGold": 1.0,
"SceneProofGold": 1.0,
"TasteGold": 1.0,
"SalesGold": 1.0,
"PunishGold": 1.0,
"PunishRemark": "sample string 2"
}
application/xml, text/xml
Sample:
<AuditPromotionActivityDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JT.VSFA.Entity"> <ActivityID>a29bd306-6fa2-4f32-9a92-fe8701f375c7</ActivityID> <EndProofGold>1</EndProofGold> <PunishGold>1</PunishGold> <PunishRemark>sample string 2</PunishRemark> <SalesGold>1</SalesGold> <SceneProofGold>1</SceneProofGold> <StartProofGold>1</StartProofGold> <StatusKey>sample string 1</StatusKey> <TasteGold>1</TasteGold> </AuditPromotionActivityDto>
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>