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
Get a Record
Retrieve a specific record by its ID.
curl --request GET \
--url https://api.withcortex.ai/apps/{app_id}/collections/{collection_id}/records/{record_id}
{
"id": "<string>",
"name": "Important Record",
"status": "COMPLETED",
"source": "API",
"usage": {
"total": 123,
"calls": [
{
"id": "<string>",
"total": 123,
"calls": [
{}
]
}
],
"rules": {}
},
"rules_count": 123,
"rules_pass_count": 123,
"rules_fail_count": 123,
"rules_warn_count": 123,
"rules": {},
"collection_name": "<string>",
"collection_id": "col_xxx",
"created_by": {
"id": "user_xxx",
"name": "John Doe"
},
"tags": [
{
"id": "<string>",
"name": "<string>",
"color": "<string>",
"app_id": "<string>",
"created_at": "2023-12-25",
"updated_at": "2023-12-25"
}
],
"created_at": "2023-12-25",
"updated_at": "2023-12-25",
"config": {
"id": "<string>",
"mappings": [
{
"source_path": "LOAN_APPLICATION:income",
"destination_paths": [
"MONTHLY_INCOME:amount",
"ANNUAL_INCOME:amount"
]
}
],
"created_at": "2023-12-25",
"updated_at": "2023-12-25",
"rules": [
{
"name": "Check Business Name",
"key": "CHECK_BUSINESS_NAME",
"execution_order": "before-all",
"on_success": "PASS",
"on_fail": "WARN",
"step_key": "<string>",
"workflow_id": "work_xxx",
"workflow_version_id": "workv_xxx",
"workflow_use_latest": true,
"workflow_input_default": {
"business_name": "Example Corp"
},
"disabled": false,
"workflow": {
"id": "<string>",
"name": "<string>",
"description": "<string>",
"app": {
"id": "<string>",
"name": "<string>",
"verified": true
},
"version": {
"id": "<string>",
"app_id": "<string>",
"workflow_id": "<string>",
"description": "<string>",
"version": 123,
"rollback_version": 123,
"notes": "<string>",
"created_by": {
"id": "<string>",
"name": "<string>"
},
"created_at": "2023-12-25",
"key": "<string>",
"input": {},
"input_default": {},
"input_options": {
"display": {
"field": "inline",
"container": "grid",
"hidden": true
}
},
"steps": [
{
"type": "note",
"key": "<string>",
"conditional": "<string>",
"loop": "<string>",
"throw_on_error": true,
"input_connected": true,
"destinations": [
"<string>"
],
"position": [
123
],
"size": [
101
],
"auto": {
"provider": "<string>",
"model": "<string>",
"temperature": 1
},
"note": "<string>"
}
]
},
"tags": [
{
"id": "<string>",
"name": "<string>",
"color": "<string>",
"app_id": "<string>",
"created_at": "2023-12-25",
"updated_at": "2023-12-25"
}
],
"tests_stats": {
"total_count": 123,
"running_count": 123,
"cancelled_count": 123,
"passing_count": 123,
"failing_count": 123,
"expectations_failing_count": 123,
"expectations_passing_count": 123
},
"template_id": "<string>",
"runs_count": 0,
"enabled": true,
"deleted": false,
"created_at": "2023-12-25",
"updated_at": "2023-12-25",
"key": "<string>",
"input": {},
"input_default": {},
"input_options": {
"display": {
"field": "inline",
"container": "grid",
"hidden": true
}
},
"steps": [
{
"type": "note",
"key": "<string>",
"conditional": "<string>",
"loop": "<string>",
"throw_on_error": true,
"input_connected": true,
"destinations": [
"<string>"
],
"position": [
123
],
"size": [
101
],
"auto": {
"provider": "<string>",
"model": "<string>",
"temperature": 1
},
"note": "<string>"
}
]
},
"workflow_version": {
"id": "<string>",
"app_id": "<string>",
"workflow_id": "<string>",
"description": "<string>",
"version": 123,
"rollback_version": 123,
"notes": "<string>",
"created_by": {
"id": "<string>",
"name": "<string>"
},
"created_at": "2023-12-25",
"key": "<string>",
"input": {},
"input_default": {},
"input_options": {
"display": {
"field": "inline",
"container": "grid",
"hidden": true
}
},
"steps": [
{
"type": "note",
"key": "<string>",
"conditional": "<string>",
"loop": "<string>",
"throw_on_error": true,
"input_connected": true,
"destinations": [
"<string>"
],
"position": [
123
],
"size": [
101
],
"auto": {
"provider": "<string>",
"model": "<string>",
"temperature": 1
},
"note": "<string>"
}
]
}
}
]
},
"entity": {
"id": "<string>",
"entity_id": "<string>",
"status": "SYNCED",
"type": "ENCOMPASS",
"trigger_id": "<string>",
"record_id": "<string>",
"data": {},
"created_at": "2023-12-25",
"updated_at": "2023-12-25"
}
}
Path Parameters
The ID of the app
The ID of the collection
The ID of the record
Query Parameters
Properties to include in the record response
all
["all"]
Response
Detailed information about a record with the details of the trigger entity and collection configuration
Unique identifier for the record
Name of the record
"Important Record"
Current status of the record
DRAFT
, QUEUED
, RUNNING
, CANCELLED
, COMPLETED
, FAILED
"COMPLETED"
Source from which the record was created
APP
, API
, TRIGGER
"API"
Total number of rules of this record
Number of passed rules
Number of failed rules
Number of rules with warnings
Rules associated with this record
Detailed information about a record rule
Current status of the record rule
DRAFT
, RUNNING
, PASSED
, FAILED
, WARN
"PASSED"
Unique key of the rule within the collection
"CHECK_BUSINESS_NAME"
Input values used for the rule execution
{ "business_name": "Acme Corp" }
Details of the rule execution workflow run
Unique identifier for the run
Input values used for the run
Output of the run
Detailed information about the step run
Status of the run
PENDING
, RUNNING
, CANCELLED
, COMPLETED
, SKIPPED
, FAILED
"RUNNING"
Origin of the run
WORKFLOW
, TRIGGER
, RECORD
, TEST
, ENDPOINT
"WORKFLOW"
Timestamp of when the run started
Timestamp of when the run ended
ID of the associated app where the run was triggered from
ID of the associated app where the workflow belongs to
ID of the associated workflow
Draft version of the workflow
Unique key for the workflow version
Input definition of the workflow
Default config input values of the workflow
Input options of the workflow
Steps of the workflow at the time this version was deployed
A step that displays as a note on the canvas
Details of the workflow version used for the run
Unique identifier for the workflow version
App id where the workflow version belongs to
Workflow id where the version belongs to
Description of the workflow at the time this version was deployed
Version number
Release notes
Date when the version was deployed
Unique key for the workflow version
Input definition of the workflow
Default config input values of the workflow
Input options of the workflow
Steps of the workflow at the time this version was deployed
A step that displays as a note on the canvas
Version number from which this version was rolled back
User who deployed the version
Timestamp of when the run was created
Timestamp of when the run was last updated
Result of the run
Error message if the run failed
ID of the associated collection
ID of the associated record
Version number of the workflow
Timestamp when the record rule was created
Timestamp when the record rule was last updated
all
Result of the rule execution
Error message if the rule execution failed
"Invalid input data"
Name of the collection this record belongs to
Unique identifier of the collection this record belongs to
"col_xxx"
Tags associated with this record
Detailed information about an app tag (which can be attached to records, workflows, etc.)
Unique identifier for the tag
Name of the tag
Color associated with the tag
Identifier for the associated app
Timestamp when the tag was created
Timestamp when the tag was last updated
Timestamp when the record was created
Timestamp when the record was last updated
Unique identifier for the collection configuration
List of input field mappings of the collection
Mapping of a source field to multiple destination fields
Timestamp when the configuration was created
Timestamp when the configuration was last updated
List of rules associated with the collection with workflow details
Detailed information about a rule with workflow details
Name of the rule
"Check Business Name"
Unique key of the rule within the collection
"CHECK_BUSINESS_NAME"
Action to take if the rule passes
PASS
, FAIL
, WARN
"PASS"
Action to take if the rule fails
PASS
, FAIL
, WARN
"WARN"
Unique identifier of the linked workflow
"work_xxx"
Unique identifier of the specific workflow version to use
"workv_xxx"
Should the rule use the latest version of the workflow?
true
Detailed information about a workflow
Unique identifier for the workflow
Name of the workflow
Description of the workflow
Current version of the workflow
Unique identifier for the workflow version
App id where the workflow version belongs to
Workflow id where the version belongs to
Description of the workflow at the time this version was deployed
Version number
Release notes
Date when the version was deployed
Unique key for the workflow version
Input definition of the workflow
Default config input values of the workflow
Input options of the workflow
Steps of the workflow at the time this version was deployed
A step that displays as a note on the canvas
Version number from which this version was rolled back
User who deployed the version
Tags associated with the workflow
Detailed information about an app tag (which can be attached to records, workflows, etc.)
Unique identifier for the tag
Name of the tag
Color associated with the tag
Identifier for the associated app
Timestamp when the tag was created
Timestamp when the tag was last updated
Unique identifier for the template
Number of runs of the workflow
0
Indicates if the workflow is enabled
true
Indicates if the workflow is deleted
false
Creation date of the workflow
Last update date of the workflow
Unique key for the workflow version
Input definition of the workflow
The file type allows users to upload files
Default config input values of the workflow
Input options of the workflow
Display options for the input fields
Steps of the workflow at the time this version was deployed
A step that displays as a note on the canvas
The type of the step
note
A unique key for the step
1 - 128
The note content (markdown supported)
A condition to determine if the step should run
A loop condition for the step to repeat running until the condition is met
Whether to throw an error if the step fails
Whether the step is connected to the input
The step keys that this step connects to
A unique key for the step
The position of the step on the canvas
The size of the step on the canvas
Auto configuration for the step
Statistics of the workflow tests
Total number of workflow tests
Number of running workflow tests
Number of cancelled workflow tests
Number of passing workflow tests
Number of failing workflow tests
Number of expectations failing in workflow tests
Number of expectations passing in workflow tests
Information about the workflow version
Unique identifier for the workflow version
App id where the workflow version belongs to
Workflow id where the version belongs to
Description of the workflow at the time this version was deployed
Version number
Release notes
Date when the version was deployed
Unique key for the workflow version
Input definition of the workflow
The file type allows users to upload files
Default config input values of the workflow
Input options of the workflow
Display options for the input fields
Steps of the workflow at the time this version was deployed
A step that displays as a note on the canvas
The type of the step
note
A unique key for the step
1 - 128
The note content (markdown supported)
A condition to determine if the step should run
A loop condition for the step to repeat running until the condition is met
Whether to throw an error if the step fails
Whether the step is connected to the input
The step keys that this step connects to
A unique key for the step
The position of the step on the canvas
The size of the step on the canvas
Auto configuration for the step
Version number from which this version was rolled back
When to run this rule compared to others
"before-all"
Step key to run the rule on
Default config input values to execute the workflow with
{ "business_name": "Example Corp" }
Whether the rule is disabled
false
Detailed information about a trigger entity
Unique identifier for the trigger entity
Unique identifier of the external source in the connected service
Current status of the trigger entity
SYNCED
, SYNCING
"SYNCED"
Type of the trigger
ENCOMPASS
, PERSONA
"ENCOMPASS"
Unique identifier of the associated trigger
Unique identifier of the record associated with the trigger entity
Data associated with the trigger entity
Timestamp of when the trigger entity was created
Timestamp of when the trigger entity was last updated
Credit usage information of the record
Credits usage of the step run
Was this page helpful?
curl --request GET \
--url https://api.withcortex.ai/apps/{app_id}/collections/{collection_id}/records/{record_id}
{
"id": "<string>",
"name": "Important Record",
"status": "COMPLETED",
"source": "API",
"usage": {
"total": 123,
"calls": [
{
"id": "<string>",
"total": 123,
"calls": [
{}
]
}
],
"rules": {}
},
"rules_count": 123,
"rules_pass_count": 123,
"rules_fail_count": 123,
"rules_warn_count": 123,
"rules": {},
"collection_name": "<string>",
"collection_id": "col_xxx",
"created_by": {
"id": "user_xxx",
"name": "John Doe"
},
"tags": [
{
"id": "<string>",
"name": "<string>",
"color": "<string>",
"app_id": "<string>",
"created_at": "2023-12-25",
"updated_at": "2023-12-25"
}
],
"created_at": "2023-12-25",
"updated_at": "2023-12-25",
"config": {
"id": "<string>",
"mappings": [
{
"source_path": "LOAN_APPLICATION:income",
"destination_paths": [
"MONTHLY_INCOME:amount",
"ANNUAL_INCOME:amount"
]
}
],
"created_at": "2023-12-25",
"updated_at": "2023-12-25",
"rules": [
{
"name": "Check Business Name",
"key": "CHECK_BUSINESS_NAME",
"execution_order": "before-all",
"on_success": "PASS",
"on_fail": "WARN",
"step_key": "<string>",
"workflow_id": "work_xxx",
"workflow_version_id": "workv_xxx",
"workflow_use_latest": true,
"workflow_input_default": {
"business_name": "Example Corp"
},
"disabled": false,
"workflow": {
"id": "<string>",
"name": "<string>",
"description": "<string>",
"app": {
"id": "<string>",
"name": "<string>",
"verified": true
},
"version": {
"id": "<string>",
"app_id": "<string>",
"workflow_id": "<string>",
"description": "<string>",
"version": 123,
"rollback_version": 123,
"notes": "<string>",
"created_by": {
"id": "<string>",
"name": "<string>"
},
"created_at": "2023-12-25",
"key": "<string>",
"input": {},
"input_default": {},
"input_options": {
"display": {
"field": "inline",
"container": "grid",
"hidden": true
}
},
"steps": [
{
"type": "note",
"key": "<string>",
"conditional": "<string>",
"loop": "<string>",
"throw_on_error": true,
"input_connected": true,
"destinations": [
"<string>"
],
"position": [
123
],
"size": [
101
],
"auto": {
"provider": "<string>",
"model": "<string>",
"temperature": 1
},
"note": "<string>"
}
]
},
"tags": [
{
"id": "<string>",
"name": "<string>",
"color": "<string>",
"app_id": "<string>",
"created_at": "2023-12-25",
"updated_at": "2023-12-25"
}
],
"tests_stats": {
"total_count": 123,
"running_count": 123,
"cancelled_count": 123,
"passing_count": 123,
"failing_count": 123,
"expectations_failing_count": 123,
"expectations_passing_count": 123
},
"template_id": "<string>",
"runs_count": 0,
"enabled": true,
"deleted": false,
"created_at": "2023-12-25",
"updated_at": "2023-12-25",
"key": "<string>",
"input": {},
"input_default": {},
"input_options": {
"display": {
"field": "inline",
"container": "grid",
"hidden": true
}
},
"steps": [
{
"type": "note",
"key": "<string>",
"conditional": "<string>",
"loop": "<string>",
"throw_on_error": true,
"input_connected": true,
"destinations": [
"<string>"
],
"position": [
123
],
"size": [
101
],
"auto": {
"provider": "<string>",
"model": "<string>",
"temperature": 1
},
"note": "<string>"
}
]
},
"workflow_version": {
"id": "<string>",
"app_id": "<string>",
"workflow_id": "<string>",
"description": "<string>",
"version": 123,
"rollback_version": 123,
"notes": "<string>",
"created_by": {
"id": "<string>",
"name": "<string>"
},
"created_at": "2023-12-25",
"key": "<string>",
"input": {},
"input_default": {},
"input_options": {
"display": {
"field": "inline",
"container": "grid",
"hidden": true
}
},
"steps": [
{
"type": "note",
"key": "<string>",
"conditional": "<string>",
"loop": "<string>",
"throw_on_error": true,
"input_connected": true,
"destinations": [
"<string>"
],
"position": [
123
],
"size": [
101
],
"auto": {
"provider": "<string>",
"model": "<string>",
"temperature": 1
},
"note": "<string>"
}
]
}
}
]
},
"entity": {
"id": "<string>",
"entity_id": "<string>",
"status": "SYNCED",
"type": "ENCOMPASS",
"trigger_id": "<string>",
"record_id": "<string>",
"data": {},
"created_at": "2023-12-25",
"updated_at": "2023-12-25"
}
}