POST api/invoices/addcharges
Request Information
URI Parameters
None.
Body Parameters
InvoiceChargeDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| securetyUserId | globally unique identifier |
None. |
|
| invoiceId | globally unique identifier |
None. |
|
| chargeAmount | decimal number |
None. |
|
| chargeType | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"securetyUserId": "fc596509-1cb2-419b-9ec2-02d3d87b516c",
"invoiceId": "887d841b-cc1b-45b9-9ae6-e0e8261704cd",
"chargeAmount": 1.0,
"chargeType": "sample string 1"
}
application/xml, text/xml
Sample:
<InvoiceChargeDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.DTO.Net"> <chargeAmount>1</chargeAmount> <chargeType>sample string 1</chargeType> <invoiceId>887d841b-cc1b-45b9-9ae6-e0e8261704cd</invoiceId> <securetyUserId>fc596509-1cb2-419b-9ec2-02d3d87b516c</securetyUserId> </InvoiceChargeDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
JsonResultOfAPIResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Content | APIResponse |
None. |
|
| SerializerSettings | JsonSerializerSettings |
None. |
|
| Encoding | Encoding |
None. |
|
| Request | HttpRequestMessage |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.