Automations
List automations
Returns all automations in your workspace. Requires automations:read scope.
Authorization
bearerAuth AuthorizationBearer <token>
Bearer token authentication. Use a Regular API key for email sending, or an Admin API key for marketing and automation endpoints.
Get your API keys from Settings → API Keys (regular) or Settings → Admin API Keys (admin) in the dashboard.
In: header
Response Body
application/json
curl -X GET "https://api.keplars.com/api/v1/public/automations/get-all"{
"success": true,
"message": "Success",
"data": {
"automations": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"name": "string",
"status": "draft",
"trigger_type": "contact_event",
"trigger_config": {},
"enrolled_count": 0,
"completed_count": 0,
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z"
}
],
"total": 0
}
}