GET
/
apps
/
{app_id}
/
collections
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

app_id
string
required

The ID of the app

Query Parameters

What you want to search for in collections

tags
string[]

Tags to filter collections by (you can use up to 20)

Example:
["tag_xxx", "tag_yyy"]
page
number

Page number

take
number

Number of items to take

next
string

Next page token (Only used on special endpoints)

Response

200 - application/json
You'll receive an array of collections.
id
string
required

Unique identifier for the collection

name
string
required

Name of the collection

description
string | null
required

Description of the collection

app
object
required

Public information about an app (organization)

config
object | null
required

Configuration of the collection. Including rules, triggers, etc.

tags
object[]
required

Tags attached to this collection

Detailed information about an app tag (which can be attached to records, workflows, etc.)

records_count
number
required

How many records are in the collection

deleted
boolean
required

Has the collection been deleted

triggers
object[]
required

Triggers associated with the collection

Detailed information about a trigger

created_at
string | null
required

Timestamp when the collection was created

updated_at
string | null
required

Timestamp when the collection was last updated