Retrieves a summary of kickout messages for a bill import task
Use this endpoint to get a high-level overview of what went wrong during a bill import.
Returns aggregated kickout message counts. The task must be of type Bill Import.
Requires Bills and Batches View permission.
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. |
Path Parameters
| Name | Description | Type | Required |
|---|---|---|---|
| taskGuid | The GUID of the bill import task to retrieve kickout summary for | string (uuid) | Required |
Responses
200
OK
The request succeeded and the response body contains the requested data.
Response Body Parameters
BillImportTaskKickoutSummaryResponse
| Property | Description | Type |
|---|---|---|
| fileName | The name of the imported file that produced the kickouts | string |
| kickoutMessages | A list of the kickout messages produced by the uploaded file. | string[] |
| taskGuid | The identifier for the task that produced the kickouts | string (uuid) |
Example Response
{ "fileName": "string", "kickoutMessages": [
"string"
], "taskGuid": "string"
}
404
Not Found
The requested resource was not found. Verify the ID or path is correct.