Skip to main content
GET
/
workflows
/
v1
/
templates
Get Workflow Templates
curl --request GET \
  --url https://api-qa.interactly.ai/workflows/v1/templates \
  --header 'Authorization: Bearer <token>'
{
  "workflow_templates": [
    {
      "teamId": "5eb7cf5a86d9755df3a6c593",
      "createdBy": "5eb7cf5a86d9755df3a6c593",
      "updatedBy": "5eb7cf5a86d9755df3a6c593",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "_id": "5eb7cf5a86d9755df3a6c593",
      "workflow_template_config": {
        "access_level": "personal",
        "access_list": [
          "5eb7cf5a86d9755df3a6c593"
        ],
        "logical_id": "<string>",
        "workflow_id": "<string>"
      }
    }
  ],
  "total": 123
}

Authorizations

Authorization
string
header
required

Retrieve your API Key from Dashboard API Keys Section.

Query Parameters

size
integer
default:100

Number of items per page

Required range: x >= 1
page
integer
default:1

Page number

Required range: x >= 1
search
string | null

Search keywords

start
string<date-time> | null

Filter by start time (ISO 8601 format)

end
string<date-time> | null

Filter by end time (ISO 8601 format)

logical_id
string | null
workflow_id
string | null
Required string length: 24
Example:

"5eb7cf5a86d9755df3a6c593"

access_level
enum<string> | null

Enum representing different access control levels.

Available options:
personal,
team,
system

Response

Successful Response

Response model for a list of workflow templates. Contains a list of WorkflowTemplateModel objects.

workflow_templates
WorkflowTemplatesModel · object[]

List of workflow templates

total
integer | null

Total number of workflow templates available without pagination.