Inquirly
  1. Automation Rule
Inquirly
  • Accounts
    • Create an Account
      POST
    • Get an account details
      GET
    • Update an account
      PATCH
    • Delete an Account
      DELETE
  • Account Users
    • List all Account Users
      GET
    • Create an Account User
      POST
    • Delete an Account User
      DELETE
  • AgentBots
    • List all AgentBots
      GET
    • Create an Agent Bot
      POST
    • Get an agent bot details
      GET
    • Update an agent bot
      PATCH
    • Delete an AgentBot
      DELETE
  • Users
    • Create a User
      POST
    • Get an user details
      GET
    • Update a user
      PATCH
    • Delete a User
      DELETE
    • Get User SSO Link
      GET
  • Inbox API
    • Inbox details
      GET
  • Contacts API
    • Create a contact
      POST
    • Get a contact
      GET
    • Update a contact
      PATCH
  • Conversations API
    • Create a conversation
    • List all conversations
    • Get a single conversation
    • Resolve a conversation
    • Toggle typing status
    • Update last seen
  • Messages API
    • Create a message
    • List all messages
    • Update a message
  • Contact Labels
    • List Labels
    • Add Labels
  • CSAT Survey Page
    • Get CSAT survey page
  • Account AgentBots
    • List all AgentBots
    • Create an Agent Bot
    • Get an agent bot details
    • Update an agent bot
    • Delete an AgentBot
  • Agents
    • List Agents in Account
    • Add a New Agent
    • Update Agent in Account
    • Remove an Agent from Account
  • Canned Responses
    • List all Canned Responses in an Account
    • Add a New Canned Response
    • Remove a Canned Response from Account
  • Canned Response
    • Update Canned Response in Account
  • Custom Attributes
    • List all custom attributes in an account
    • Add a new custom attribute
    • Get a custom attribute details
    • Update custom attribute in Account
    • Remove a custom attribute from account
  • Contacts
    • List Contacts
    • Create Contact
    • Show Contact
    • Update Contact
    • Delete Contact
    • Contact Conversations
    • Search Contacts
    • Contact Filter
  • Contact
    • Create contact inbox
    • Get Contactable Inboxes
  • Automation Rule
    • List all automation rules in an account
      GET
    • Add a new automation rule
      POST
    • Get a automation rule details
      GET
    • Update automation rule in Account
      PATCH
    • Remove a automation rule from account
      DELETE
  • Help Center
    • Add a new portal
    • List all portals in an account
    • update a new portal
    • Add a new category
    • Add a new article
  • Conversations
    • Get Conversation Counts
    • Conversations List
    • Create New Conversation
    • Conversations Filter
    • Conversation Details
    • Update Conversation
    • Toggle Status
    • Toggle Priority
  • Conversation Assignment
    • Assign Conversation
  • Conversation Labels
    • List Labels
    • Add Labels
  • Inboxes
    • List all inboxes
    • Get an inbox
    • Create an inbox
    • Update Inbox
    • Show Inbox Agent Bot
    • Add or remove agent bot
    • List Agents in Inbox
    • Add a New Agent
    • Update Agents in Inbox
    • Remove an Agent from Inbox
  • Messages
    • Get messages
    • Create New Message
    • Delete a message
  • Integrations
    • List all the Integrations
    • Create an integration hook
    • Update an Integration Hook
    • Delete an Integration Hook
  • Profile
    • Fetch user profile
  • Teams
    • List all teams
    • Create a team
    • Get a team details
    • Update a team
    • Delete a team
    • List Agents in Team
    • Add a New Agent
    • Update Agents in Team
    • Remove an Agent from Team
  • Custom Filters
    • List all custom filters
    • Create a custom filter
    • Get a custom filter details
    • Update a custom filter
    • Delete a custom filter
  • Webhooks
    • List all webhooks
    • Add a webhook
    • Update a webhook object
    • Delete a webhook
  • Reports
    • Get Account reports
    • Get Account reports summary
    • Account Conversation Metrics
    • Agent Conversation Metrics
  1. Automation Rule

Update automation rule in Account

PATCH
/api/v1/accounts/{account_id}/automation_rules/{id}
Automation Rule
Update a automation rule in account
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH '/api/v1/accounts//automation_rules/' \
--header 'Content-Type: application/json; charset=utf-8' \
--data-raw '{
    "name": "Add label on message create event",
    "description": "Add label support and sales on message create event if incoming message content contains text help",
    "event_name": "conversation_created",
    "active": true,
    "actions": [
        {
            "action_name": "add_label",
            "action_params": [
                "support"
            ]
        }
    ],
    "conditions": [
        {
            "attribute_key": "content",
            "filter_operator": "contains",
            "query_operator": "nil",
            "values": [
                "help"
            ]
        }
    ]
}'
Response Response Example
200 - Example 1
{
    "event_name": "conversation_created",
    "name": "Add label on message create event",
    "description": "Add label support and sales on message create event if incoming message content contains text help",
    "active": true,
    "actions": [
        {
            "action_name": "add_label",
            "action_params": [
                "support",
                "sales"
            ]
        }
    ],
    "conditions": [
        {
            "attribute_key": "content",
            "filter_operator": "contains",
            "values": [
                "help"
            ],
            "query_operator": "nil"
        }
    ],
    "account_id": 0
}

Request

Path Params
id
integer 
required
The ID of the automation rule to be updated.
account_id
string 
required
Body Params application/json; charset=utf-8
name
string 
optional
Rule name
Example:
Add label on message create event
description
string 
optional
The description about the automation and actions
Example:
Add label support and sales on message create event if incoming message content contains text help
event_name
enum<string> 
optional
The event when you want to execute the automation actions
Allowed values:
conversation_createdconversation_updatedmessage_created
Example:
message_created
active
boolean 
optional
Enable/disable automation rule
actions
array [object] 
optional
Array of actions which you want to perform when condition matches, e.g add label support if message contains content help.
conditions
array [object] 
optional
Array of conditions on which conversation filter would work, e.g message content contains text help.
Examples

Responses

🟢200OK
application/json; charset=utf-8
Success
Body
event_name
enum<string> 
optional
Automation Rule event, on which we call the actions(conversation_created, conversation_updated, message_created)
Allowed values:
conversation_createdconversation_updatedmessage_created
Example:
message_created
name
string 
optional
The name of the rule
Example:
Add label on message create event
description
string 
optional
Description to give more context about the rule
Example:
Add label support and sales on message create event if incoming message content contains text help
active
boolean 
optional
Enable/disable automation rule
actions
array [object] 
optional
Array of actions which we perform when condition matches
conditions
array [object] 
optional
Array of conditions on which conversation/message filter would work
account_id
integer 
optional
Account Id
🟠403Forbidden
🟠404Record Not Found
Previous
Get a automation rule details
Next
Remove a automation rule from account
Built with