© 2025 Clarivate
POST /api/.../invoices/{id}/charges
Add Invoice Header Charges.
| Name | Type | Required | Description |
|---|---|---|---|
| id | Integer | Yes | The unique id assigned to the Invoice. |
| dto | DtoAddHeaderCharge | Yes | Define this parameter in the request body. |
| 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. |
[
{
"FundID": 0,
"ChargeType": 0,
"Amount": 0
}
]
True is returned upon success.
true
| Code | Description |
|---|---|
| 200 | OK. Success |