Skip to main content
GET
/
v1
/
streams
/
{STREAM_ID}
/
executions
List Stream executions
curl --request GET \
  --url https://api.domo.com/v1/streams/{STREAM_ID}/executions \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 1,
    "startedAt": "2016-05-26T22:20:21Z",
    "currentState": "ACTIVE",
    "createdAt": "2016-05-26T22:20:21Z",
    "modifiedAt": "2016-05-26T22:20:21Z"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

STREAM_ID
number
required

The ID of the Stream

Query Parameters

limit
number

The amount of Stream to return in the list. The default is 50 and the maximum is 500.

offset
number

The offset of the Stream ID to begin list of users within the response.

Response

200 - application/json

Returns a subset of the Stream execution object from the specified Stream.

id
integer
startedAt
string
currentState
string
createdAt
string
modifiedAt
string