POST api/Manage/CallBackTaskAppModifiedData
Request Information
URI Parameters
None.
Body Parameters
CallBackTaskRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| result | string |
None. |
|
| approve_id | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"result": "sample string 1",
"approve_id": "sample string 2"
}
application/xml, text/xml
Sample:
<CallBackTaskRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WXProgramApi.Models.HrWxModels"> <approve_id>sample string 2</approve_id> <result>sample string 1</result> </CallBackTaskRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
BaseResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| msg |
消息 |
string |
None. |
| result |
是否成功 |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"msg": "sample string 1",
"result": true
}
application/xml, text/xml
Sample:
<BaseResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WXProgramApi"> <msg>sample string 1</msg> <result>true</result> </BaseResponse>