POST api/Shop/XmhInvoiceNameModificationApprovalApprove
一客一价开票名称修改审批
Request Information
URI Parameters
None.
Body Parameters
XmhInvoiceNameModificationApprovalRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| mod_reason |
修改原因 |
string |
None. |
| customerInfo | Collection of INMCustomerInfo |
None. |
|
| goodsInfo | Collection of INMGoodsInfo |
None. |
|
| UserName |
发起人账号 |
string |
Required |
| Pwd |
发起人密码 |
string |
Required |
| ProcessCode |
审批模板code |
string |
None. |
| ApproverDingId |
审批人钉钉ID 多个以,分割 |
string |
None. |
| CcDingId |
抄送人钉钉ID 多个以,分割 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"mod_reason": "sample string 1",
"customerInfo": [
{
"customer_account": "sample string 1",
"customer_name": "sample string 2"
},
{
"customer_account": "sample string 1",
"customer_name": "sample string 2"
}
],
"goodsInfo": [
{
"goods_name": "sample string 1",
"goods_sn": "sample string 2",
"invoice_name": "sample string 3",
"mod_invoice_name": "sample string 4"
},
{
"goods_name": "sample string 1",
"goods_sn": "sample string 2",
"invoice_name": "sample string 3",
"mod_invoice_name": "sample string 4"
}
],
"UserName": "sample string 2",
"Pwd": "sample string 3",
"ProcessCode": "sample string 4",
"ApproverDingId": "sample string 5",
"CcDingId": "sample string 6"
}
application/xml, text/xml
Sample:
<XmhInvoiceNameModificationApprovalRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WXProgramApi.Models.ShopBizModels">
<ApproverDingId>sample string 5</ApproverDingId>
<CcDingId>sample string 6</CcDingId>
<ProcessCode>sample string 4</ProcessCode>
<Pwd>sample string 3</Pwd>
<UserName>sample string 2</UserName>
<customerInfo>
<INMCustomerInfo>
<customer_account>sample string 1</customer_account>
<customer_name>sample string 2</customer_name>
</INMCustomerInfo>
<INMCustomerInfo>
<customer_account>sample string 1</customer_account>
<customer_name>sample string 2</customer_name>
</INMCustomerInfo>
</customerInfo>
<goodsInfo>
<INMGoodsInfo>
<goods_name>sample string 1</goods_name>
<goods_sn>sample string 2</goods_sn>
<invoice_name>sample string 3</invoice_name>
<mod_invoice_name>sample string 4</mod_invoice_name>
</INMGoodsInfo>
<INMGoodsInfo>
<goods_name>sample string 1</goods_name>
<goods_sn>sample string 2</goods_sn>
<invoice_name>sample string 3</invoice_name>
<mod_invoice_name>sample string 4</mod_invoice_name>
</INMGoodsInfo>
</goodsInfo>
<mod_reason>sample string 1</mod_reason>
</XmhInvoiceNameModificationApprovalRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
BaseOut| Name | Description | Type | Additional information |
|---|---|---|---|
| errcode |
错误编码 2:error 401:鉴权失败;200:成功;500:内部错误; |
ErrCode |
None. |
| message |
消息 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"errcode": 2,
"message": "sample string 1"
}
application/xml, text/xml
Sample:
<BaseOut xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WXProgramApi.Models.HrWxModels"> <errcode>Error</errcode> <message>sample string 1</message> </BaseOut>