Get All Elements

Intro

With this API you can get all the executions made to the INE Lista nominal service

Important Points

Pagination Parameters

The next two pagination parameters are mandatory to do the request.

  • itemsPerPage, number of items by page, should be an integer between [1, 1000]
  • page, the page index, should be an integer greater than 0

The following errors can be returned if there is a problem with the request body or the execution of this service:

"itemsPerPage": ERROR_QUERY_PARAM_FORMAT; indicates that should be an integer value between 1 and 1000
"page": ERROR_QUERY_PARAM_FORMAT;  indicates that should be an integer value greater than 0

Response
kiban will return a list of items with the following structure:

{
    "currentPage": 1,
    "hasNextPage": false,
    "items": [
        {
            "id": "64136ff216945390109bb396",
            "createdAt": "2023-03-16T19:37:22.449Z",
            "finishedAt": "2023-03-16T19:37:22.45Z",
            "duration": 156226,
            "status": "SUCCESS"
        }
    ]
}

Where:

  • currentPage, is the index of the retrieved page
  • hasNextPage, indicate if there are more pages
  • items, list of items requested
    • id, identifier of the request.
    • createdAt, date time of the initial call
    • finishedAt, the date time of the response of the initial call
    • duration, how long it took to get the response.
    • status, status of the request
Language
Authorization
Header
Click Try It! to start a request and see the response here!