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 Collections
Get a list of all collections of your app.
curl --request GET \
--url https://api.withcortex.ai/apps/{app_id}/collections
[
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"app": {
"id": "<string>",
"name": "<string>",
"verified": true
},
"config": {
"id": "<string>",
"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
}
],
"mappings": [
{
"source_path": "LOAN_APPLICATION:income",
"destination_paths": [
"MONTHLY_INCOME:amount",
"ANNUAL_INCOME:amount"
]
}
],
"created_at": "2023-12-25",
"updated_at": "2023-12-25"
},
"tags": [
{
"id": "<string>",
"name": "<string>",
"color": "<string>",
"app_id": "<string>",
"created_at": "2023-12-25",
"updated_at": "2023-12-25"
}
],
"records_count": 123,
"deleted": true,
"triggers": [
{
"id": "<string>",
"type": "ENCOMPASS",
"name": "My Encompass Trigger",
"config": {
"type": "ENCOMPASS",
"mappings": [
{
"type": "document",
"name": "<string>",
"entity_path": "<string>",
"input_path": [
"<string>"
]
}
],
"pull_on_millestones": [
"Application Received",
"Underwriting Complete",
"Clear to Close"
],
"pull_on_folders": [
"Loan Folder",
"Document Folder",
"Underwriting Folder"
]
},
"enabled": true,
"connection_id": "con_xxx",
"collection_id": "<string>",
"created_at": "2023-12-25",
"updated_at": "2023-12-25"
}
],
"created_at": "2023-12-25",
"updated_at": "2023-12-25"
}
]
Path Parameters
The ID of the app
Query Parameters
What you want to search for in collections
Tags to filter collections by (you can use up to 20)
["tag_xxx", "tag_yyy"]
Page number
Number of items to take
Next page token (Only used on special endpoints)
Response
Unique identifier for the collection
Name of the collection
Description of the collection
Configuration of the collection. Including rules, triggers, etc.
Unique identifier for the collection configuration
List of rules associated with the collection
Detailed information about a rule
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
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
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
Tags attached to this collection
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
How many records are in the collection
Has the collection been deleted
Triggers associated with the collection
Detailed information about a trigger
Unique identifier for the trigger
Service that the trigger is connected to
ENCOMPASS
, PERSONA
"ENCOMPASS"
Name of the trigger
"My Encompass Trigger"
Configuration of the trigger
Type of the trigger connection
ENCOMPASS
Milestones to pull from Encompass
[
"Application Received",
"Underwriting Complete",
"Clear to Close"
]
Folders to pull from Encompass
[
"Loan Folder",
"Document Folder",
"Underwriting Folder"
]
Whether the trigger is enabled or not
Unique identifier of the connected service
"con_xxx"
Unique identifier of the collection this trigger belongs to
Creation date of the trigger
Last update date of the trigger
Timestamp when the collection was created
Timestamp when the collection was last updated
Was this page helpful?
curl --request GET \
--url https://api.withcortex.ai/apps/{app_id}/collections
[
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"app": {
"id": "<string>",
"name": "<string>",
"verified": true
},
"config": {
"id": "<string>",
"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
}
],
"mappings": [
{
"source_path": "LOAN_APPLICATION:income",
"destination_paths": [
"MONTHLY_INCOME:amount",
"ANNUAL_INCOME:amount"
]
}
],
"created_at": "2023-12-25",
"updated_at": "2023-12-25"
},
"tags": [
{
"id": "<string>",
"name": "<string>",
"color": "<string>",
"app_id": "<string>",
"created_at": "2023-12-25",
"updated_at": "2023-12-25"
}
],
"records_count": 123,
"deleted": true,
"triggers": [
{
"id": "<string>",
"type": "ENCOMPASS",
"name": "My Encompass Trigger",
"config": {
"type": "ENCOMPASS",
"mappings": [
{
"type": "document",
"name": "<string>",
"entity_path": "<string>",
"input_path": [
"<string>"
]
}
],
"pull_on_millestones": [
"Application Received",
"Underwriting Complete",
"Clear to Close"
],
"pull_on_folders": [
"Loan Folder",
"Document Folder",
"Underwriting Folder"
]
},
"enabled": true,
"connection_id": "con_xxx",
"collection_id": "<string>",
"created_at": "2023-12-25",
"updated_at": "2023-12-25"
}
],
"created_at": "2023-12-25",
"updated_at": "2023-12-25"
}
]