Get all automations
GET https://{{base_url}}/v1/projects/{{project_uid}}/automations
The Get all automations request returns comprehensive information of all the automations created in a project.
To use the API Request, you need to authenticate yourself with an Organization UID and Authtoken. Read more about it in Authentication.
For more information, refer to the Get all automations API Reference document
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
limit | number | The “limit” parameter will return a specific number of automations (in between 0-100) in your response based on the value you provide. If there are 100 automations and you want to fetch only 30 automations, set the limit as 30. | |
skip | number | The “skip” parameter will skip a specific number of automations and return the remaining ones in your response based on the value you provide. If there are 12 automations and you want to exclude the first 2 automations, set this to 2 to fetch the remaining 10 automations. | |
asc | string | The “asc” parameter allows you to sort the list of automations in the ascending order with respect to the value of a specific field. The automations can be sorted by created_at, title, and updated_at values. | |
desc | string | The “desc” parameter allows you to sort the list of automations in the descending order with respect to the value of a specific field. The automations can be sorted by created_at, title, and updated_at values. | |
include_count | boolean | Set this to “true” to include the total number (count) of automations present in a project accessible in an organization. | |
show_steps | boolean | Set this to “true” to return all the steps, triggers associated with each automation in a project. |
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
authtoken | string | Enter your authtoken. Refer Authentication for more details. | |
organization_uid | string | Enter the Organization UID. | |
Content-Type | string |