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": "FAILED",
  "errors": [
    {
      "message": "<string>",
      "errors": [
        {
          "code": "<string>",
          "expected": "<string>",
          "received": "<string>",
          "path": [
            "<string>"
          ],
          "message": "<string>"
        }
      ],
      "key": "<string>"
    }
  ]
}

Path Parameters

app_id
string
required

The ID of the app

collection_id
string
required

The ID of the collection

record_id
string
required

The ID of the record

Response

200 - application/json

Status information of a record, including any validation errors

status
enum<string>
required

Current status of the record

Available options:
DRAFT,
QUEUED,
RUNNING,
CANCELLED,
COMPLETED,
FAILED
Example:

"FAILED"

errors
object[]

List of errors if the record failed validation

Detailed information about a rule execution error