FlowDrop Docs

Get pipeline status

Retrieve only the current status of a pipeline (lightweight endpoint). Use this for polling when you only need the status, not full details.

GET
/pipeline/{id}/status

Authorization

AuthorizationBearer <token>

JWT token for authentication

In: header

Path Parameters

id*string

Pipeline UUID

Formatuuid

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/pipeline/497f6eca-6276-4993-bfeb-53cbbbba6f08/status"
{  "success": true,  "message": "string",  "error": "string",  "data": {    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",    "status": "pending",    "progress": 0,    "updated": "2019-08-24T14:15:22Z"  }}