GET
/
stream-service
/
api
/
v1
/
streams
/
{streamId}
/
components
curl --request GET \
  --url https://stream-service.vatis.tech/stream-service/api/v1/streams/{streamId}/components \
  --header 'Authorization: Bearer <token>'
{
  "streamId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "groupId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "state": "READY",
  "stateDescription": "<string>",
  "stateChangedTimestamp": "2023-11-07T05:31:56Z",
  "gateway": {
    "state": "CONNECTED",
    "stateChangedTimestamp": "2023-11-07T05:31:56Z"
  },
  "processors": [
    {
      "processorId": "<string>",
      "state": "RUNNING",
      "stateChangedTimestamp": "2023-11-07T05:31:56Z",
      "stateDescription": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

streamId
string
required

Stream id

Response

200
application/json
Stream components retrieved successfully
streamId
string
groupId
string
state
enum<string>
Available options:
READY,
COMPLETED,
FAILED,
EXPIRED
stateDescription
string
stateChangedTimestamp
string
gateway
object
processors
object[]