GET
/
polling
/
executions
  curl --request GET -L \
    --url https://core.us.stedi.com/2023-08-01/polling/executions?startDateTime=2023-08-28T00:00:00Z \
    --header "Authorization: ${STEDI_API_KEY}" 
{
  "items": [
    {
      "createdAt": "2023-08-28T09:00:24.965Z",
      "direction": "OUTBOUND",
      "executionId": "f75168e4-e682-4410-bfec-b5b1541c7f21",
      "faultCount": 0,
      "partnershipId": "i-am-another-merch_this-is-me",
      "retryable": true,
      "status": "COMPLETED",
      "transactionCount": 1,
      "updatedAt": "2023-08-28T09:00:28.741Z"
    },
    {
      "createdAt": "2023-08-28T09:17:38.591Z",
      "direction": "OUTBOUND",
      "executionId": "1bdbfae4-b30e-cab8-d90f-6fd61ef3d1da",
      "faultCount": 0,
      "partnershipId": "i-am-another-merch_this-is-me",
      "retryable": true,
      "status": "COMPLETED",
      "transactionCount": 1,
      "updatedAt": "2023-08-28T09:17:44.570Z"
    }
  ],
  "nextPageToken": "945ff6de213d3ef481d028065d4c12fb996a166a3a90ef98564318decfae50ce4b36d74b7e9d9bafa6e1d169"
}
  curl --request GET -L \
    --url https://core.us.stedi.com/2023-08-01/polling/executions?startDateTime=2023-08-28T00:00:00Z \
    --header "Authorization: ${STEDI_API_KEY}" 
{
  "items": [
    {
      "createdAt": "2023-08-28T09:00:24.965Z",
      "direction": "OUTBOUND",
      "executionId": "f75168e4-e682-4410-bfec-b5b1541c7f21",
      "faultCount": 0,
      "partnershipId": "i-am-another-merch_this-is-me",
      "retryable": true,
      "status": "COMPLETED",
      "transactionCount": 1,
      "updatedAt": "2023-08-28T09:00:28.741Z"
    },
    {
      "createdAt": "2023-08-28T09:17:38.591Z",
      "direction": "OUTBOUND",
      "executionId": "1bdbfae4-b30e-cab8-d90f-6fd61ef3d1da",
      "faultCount": 0,
      "partnershipId": "i-am-another-merch_this-is-me",
      "retryable": true,
      "status": "COMPLETED",
      "transactionCount": 1,
      "updatedAt": "2023-08-28T09:17:44.570Z"
    }
  ],
  "nextPageToken": "945ff6de213d3ef481d028065d4c12fb996a166a3a90ef98564318decfae50ce4b36d74b7e9d9bafa6e1d169"
}

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

A 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
startDateTime
string

An ISO 8601 formatted string. For example 2023-08-28T00:00:00Z. Stedi returns executions processed after this time.

Response

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

The token used for pagination

Required string length: 1 - 1024