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>"
    }
  ]
}

Path Parameters

app_id
string
required
collection_id
string
required
record_id
string
required

Response

200 - application/json
status
enum<string>
required
Available options:
DRAFT,
QUEUED,
RUNNING,
CANCELLED,
COMPLETED,
FAILED
errors
object[]