Skip to main content
GET
/
pipeline
/
{id}
/
status
Get pipeline status
curl --request GET \
  --url http://localhost:5173/api/flowdrop/pipeline/{id}/status \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "progress": 50,
    "updated": "2023-11-07T05:31:56Z"
  },
  "message": "<string>",
  "error": "<string>"
}

Authorizations

Authorization
string
header
required

JWT token for authentication

Path Parameters

id
string<uuid>
required

Pipeline UUID

Response

Pipeline status retrieved successfully

success
boolean

Whether the request was successful

data
object

Response data (type varies by endpoint)

message
string

Response message

error
string

Error message (if any)