GET
/
executions
curl --request GET \
  --url https://core.us.stedi.com/2023-08-01/executions \
  --header 'Authorization: <api-key>'
{
  "nextPageToken": "<string>",
  "items": [
    {
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "executionId": "<string>",
      "status": "COMPLETED",
      "direction": "INBOUND",
      "transactionCount": 123,
      "faultCount": 123,
      "faultCode": "DELIVERY_FAILURE",
      "faultMessage": "<string>",
      "fileType": "CSV",
      "retryable": true,
      "parentExecutionId": "<string>",
      "childExecutionId": "<string>",
      "partnershipId": "<string>",
      "connectionType": "bucket",
      "connectionId": "<string>",
      "source": {
        "dirname": "<string>",
        "name": "<string>"
      },
      "operation": "<string>"
    }
  ]
}

This endpoint retrieves information about all file executions that Stedi has processed in your account. It’s useful for displaying a list of processed files in a UI. If you want to programmatically fetch and check for new file executions, you should use the Poll Executions endpoint instead.

Authorizations

Authorization
string
header
required

A Stedi API Key for authentication.

Query Parameters

pageSize
number

The maximum number of elements to return in a page. You can set this to a maximum of 500 elements. If not specified, the default is 100.

Required range: x >= 1
pageToken
string

An opaque token returned by a previous call to this operation in the nextPageToken. If not specified, Stedi returns the first page of results.

Required string length: 1 - 1024

Response

200
application/json
ListExecutions 200 response
items
object[]
required
nextPageToken
string

The token used for pagination

Required string length: 1 - 1024