Retrieves the system-wide method used to split account charges on bill import
Use this endpoint to check the current charge split method configuration. The method determines how charges
are distributed when bills are imported (e.g., proportional, fixed allocation).
To modify the method, use PUT /billAccountChargeSplit/method.
Request Headers
| Header | Value | Required | Description |
|---|---|---|---|
| ECI-ApiKey | string | Yes | Your API key. See Authentication. |
| Content-Type | application/json | Yes | All requests must specify JSON content type. |
Responses
200
OK
The request succeeded and the response body contains the requested data.
Response Body Parameters
BillAccountChargeSplitMethodResponse
| Property | Description | Type |
|---|---|---|
| splitBillChargesMethod | During bill import a bill’s account charges will be distributed to the account’s meters either by “Use” or “Cost” null means the charges will not be distributed | string |
Example Response
{ "splitBillChargesMethod": "string"
}