Invoice Header Charges

POST /api/.../invoices/{id}/charges

Add Invoice Header Charges.

Request Information

Parameters
Name Type Required Description
id Integer Yes The unique id assigned to the Invoice.
dto DtoAddHeaderCharge Yes Define this parameter in the request body.
DtoAddHeaderCharge
Property Type Nullable Description
FundID Int No The unique id assigned to the Fund.
ChargeType Int No The type of Header Charge.
Amount Decimal No The amount of Header Charge.
Example
application/json, text/json
[
    {
      "FundID": 0,
      "ChargeType": 0,
      "Amount": 0
    }
]

Response Information

True is returned upon success.

Example
application/json, text/json
true

HTTP Response Codes

Code Description
200 OK. Success