Marks one or more bills as unexported.
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, including the request body. |
Request Body
BillUnexport
| Property | Description | Type |
|---|---|---|
| billIds | Required Cannot be Empty | integer[] |
| exportMode | Required One of ‘ap’, ‘gl’, ‘payment’ | string |
Example Request Body
{ "billIds": [
1
], "exportMode": "string"
}
Responses
200
OK
The request succeeded and the response body contains the requested data.
Response Body Parameters
UpdateResult
| Property | Description | Type |
|---|---|---|
| selected | Required (defined) | integer (int32) |
| updated | Required (defined) | integer (int32) |
Example Response
{ "selected": 1, "updated": 1
}