POST api/invoices/addcharges
Request Information
URI Parameters
None.
Body Parameters
InvoiceChargeDTOName | 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": "30d1e9e6-d184-4cbe-9158-9cd8ebc1bab0", "invoiceId": "c5975590-909b-4abe-b4a2-acdc56e54a66", "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"> <chargeAmount>1</chargeAmount> <chargeType>sample string 1</chargeType> <invoiceId>c5975590-909b-4abe-b4a2-acdc56e54a66</invoiceId> <securetyUserId>30d1e9e6-d184-4cbe-9158-9cd8ebc1bab0</securetyUserId> </InvoiceChargeDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
JsonResultOfAPIResponseName | 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.