Skip to main content
GET
/
pipelines
/
{pipelineId}
Retrieve a specific pipeline
curl --request GET \
  --url https://api.artosai.com/pipelines/{pipelineId} \
  --header 'Authorization: Bearer <token>'
{
  "pipelineId": "<string>",
  "name": "<string>",
  "status": "<string>",
  "agentIds": [
    "<string>"
  ],
  "documents": [
    "<string>"
  ],
  "connectorId": "<string>",
  "referenceDocument": "<string>",
  "outputFileName": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "created_by": "<string>",
  "last_executed": "2023-11-07T05:31:56Z",
  "executions_count": 123
}

Authorizations

Authorization
string
header
required

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

Path Parameters

pipelineId
string
required

Response

200 - application/json

Pipeline details

pipelineId
string
name
string
status
string
agentIds
string[]
documents
string[]
connectorId
string
referenceDocument
string
outputFileName
string
created_at
string<date-time>
created_by
string
last_executed
string<date-time>
executions_count
integer