Skip to main content
GET
/
api
/
automations
Get all automations for the organization
curl --request GET \
  --url https://your-instance.example.com/api/automations \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "_id": "64d2f9c5e8a1d4e001a0b1c2",
      "name": "Follow-up after 24h",
      "description": "Send a follow-up SMS if the lead has not replied in 24h.",
      "triggerLogicType": "timer",
      "enabled": true
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Automations list returned

success
enum<boolean>
required
Available options:
true
data
object[]
required