Automation Rules
Provide the token that is returned upon login
Rule trigger
Rule enabled state
OK
GET /workspaces/{workspaceId}/inbox/automation/rules HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
OK
{
"results": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"description": "text",
"categoryId": "123e4567-e89b-12d3-a456-426614174000",
"trigger": "feedItemCreated",
"triggerArguments": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"orderPosition": 1,
"enabled": true,
"conditions": {
"all": [
{
"name": "text",
"value": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
]
},
"actions": [
{
"name": "text",
"value": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
],
"createdAt": "2025-11-27T03:25:07.541Z",
"updatedAt": "2025-11-27T03:25:07.541Z"
}
]
}Provide the token that is returned upon login
OK
Workspace, automation rule or category not found
Invalid input
PATCH /workspaces/{workspaceId}/inbox/automation/rules/reorder HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 165
{
"trigger": "feedItemCreated",
"rules": [
{
"ruleId": "123e4567-e89b-12d3-a456-426614174000",
"newCategoryId": "123e4567-e89b-12d3-a456-426614174000",
"newOrderPosition": 1
}
]
}No content
Provide the token that is returned upon login
Rule ID
OK
Workspace or automation rule not found
Conflict while updating automation rule
GET /workspaces/{workspaceId}/inbox/automation/rules/{automationRuleId} HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"description": "text",
"categoryId": "123e4567-e89b-12d3-a456-426614174000",
"trigger": "feedItemCreated",
"triggerArguments": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"orderPosition": 1,
"enabled": true,
"conditions": {
"all": [
{
"name": "text",
"value": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
]
},
"actions": [
{
"name": "text",
"value": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
],
"createdAt": "2025-11-27T03:25:07.541Z",
"updatedAt": "2025-11-27T03:25:07.541Z"
}Provide the token that is returned upon login
Rule ID
OK
Workspace or automation rule not found
Invalid input
PATCH /workspaces/{workspaceId}/inbox/automation/rules/{automationRuleId} HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 350
{
"name": "text",
"description": "text",
"enabled": true,
"trigger": "feedItemCreated",
"triggerArguments": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"categoryId": "123e4567-e89b-12d3-a456-426614174000",
"conditions": {
"all": [
{
"name": "text",
"value": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
]
},
"actions": [
{
"name": "text",
"value": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
]
}{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"description": "text",
"categoryId": "123e4567-e89b-12d3-a456-426614174000",
"trigger": "feedItemCreated",
"triggerArguments": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"orderPosition": 1,
"enabled": true,
"conditions": {
"all": [
{
"name": "text",
"value": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
]
},
"actions": [
{
"name": "text",
"value": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
],
"createdAt": "2025-11-27T03:25:07.541Z",
"updatedAt": "2025-11-27T03:25:07.541Z"
}Provide the token that is returned upon login
Rule ID
OK
Workspace or automation rule not found
DELETE /workspaces/{workspaceId}/inbox/automation/rules/{automationRuleId} HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Provide the token that is returned upon login
OK
GET /workspaces/{workspaceId}/inbox/automation/categories HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
OK
{
"results": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"orderPosition": 1,
"createdAt": "2025-11-27T03:25:07.541Z",
"updatedAt": "2025-11-27T03:25:07.541Z"
}
]
}Provide the token that is returned upon login
OK
Invalid input
POST /workspaces/{workspaceId}/inbox/automation/categories HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 15
{
"name": "text"
}{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"orderPosition": 1,
"createdAt": "2025-11-27T03:25:07.541Z",
"updatedAt": "2025-11-27T03:25:07.541Z"
}Provide the token that is returned upon login
OK
Workspace, automation category not found
Invalid input
PATCH /workspaces/{workspaceId}/inbox/automation/categories/reorder HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 91
{
"categories": [
{
"categoryId": "123e4567-e89b-12d3-a456-426614174000",
"newOrderPosition": 1
}
]
}No content
Provide the token that is returned upon login
OK
Workspace or automation category not found
Conflict while updating automation category
Invalid input
PATCH /workspaces/{workspaceId}/inbox/automation/categories/{categoryId} HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 15
{
"name": "text"
}{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"orderPosition": 1,
"createdAt": "2025-11-27T03:25:07.541Z",
"updatedAt": "2025-11-27T03:25:07.541Z"
}Provide the token that is returned upon login
OK
Workspace or automation category not found
Conflict while deleting automation category
DELETE /workspaces/{workspaceId}/inbox/automation/categories/{categoryId} HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Provide the token that is returned upon login
OK
GET /workspaces/{workspaceId}/inbox/automation/new-item-reply HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
OK
{
"projectId": "123e4567-e89b-12d3-a456-426614174000"
}Provide the token that is returned upon login
OK
Conflicting configuration updates
Invalid input
PUT /workspaces/{workspaceId}/inbox/automation/new-item-reply HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 52
{
"projectId": "123e4567-e89b-12d3-a456-426614174000"
}No content
Last updated
Was this helpful?

