Records
Get Record Status
API Reference
Collections
Records
Workflows
- GETDiscover Workflows
- GETGet Discoverable Workflow
- GETGet Discoverable Workflow Version
- POSTRun Discoverable Workflow
- POSTCancel a Discoverable Workflow Run
- GETGet Workflows
- GETGet a Workflow
- GETGet Workflow Runs
- POSTRun a Workflow
- POSTReplay a Workflow Run
- GETGet a Workflow Run
- POSTCancel a Workflow Run
- GETGet Workflow Versions
- GETGet a Workflow Version
Tests
Variables
Records
Get Record Status
Retrieve the current status of a specific record.
GET
/
apps
/
{app_id}
/
collections
/
{collection_id}
/
records
/
{record_id}
/
status
curl --request GET \
--url https://api.withcortex.ai/apps/{app_id}/collections/{collection_id}/records/{record_id}/status
{
"status": "DRAFT",
"errors": [
{
"message": "<string>",
"errors": [
{
"code": "<string>",
"expected": "<string>",
"received": "<string>",
"path": [
"<string>"
],
"message": "<string>"
}
],
"rule_key": "<string>"
}
]
}
Response
200 - application/json
Available options:
DRAFT
, QUEUED
, RUNNING
, CANCELLED
, COMPLETED
, FAILED
Was this page helpful?
curl --request GET \
--url https://api.withcortex.ai/apps/{app_id}/collections/{collection_id}/records/{record_id}/status
{
"status": "DRAFT",
"errors": [
{
"message": "<string>",
"errors": [
{
"code": "<string>",
"expected": "<string>",
"received": "<string>",
"path": [
"<string>"
],
"message": "<string>"
}
],
"rule_key": "<string>"
}
]
}