Automations

Search Automations

Search for automations matching the provided filters, including query text, template refs, app, and trigger types.

post/api/v1/search/automations

Request body

appIdstring

Filter results to automations belonging to this application.

direction'SORT_DIRECTION_UNSPECIFIED' | 'SORT_DIRECTION_ASC' | 'SORT_DIRECTION_DESC'

Direction to sort in. Unspecified falls back to ASC when sort_field is set; when sort_field is also unspecified, the server default order (created_at DESC) applies.

pageSizeinteger

Maximum number of results to return per page.

pageTokenstring

Pagination token from a previous SearchAutomationsResponse.

querystring

Free-text search query to filter automations by name or description.

sortField'AUTOMATION_SORT_FIELD_UNSPECIFIED' | 'AUTOMATION_SORT_FIELD_DISPLAY_NAME' | 'AUTOMATION_SORT_FIELD_CREATED_AT' | 'AUTOMATION_SORT_FIELD_LAST_EXECUTED_AT' | 'AUTOMATION_SORT_FIELD_ENABLED' | 'AUTOMATION_SORT_FIELD_PRIMARY_TRIGGER_TYPE'

Column to sort by. Unspecified (0) means sort by created_at desc (server default).

triggerTypesstring[] nullable

Filter results to automations with any of the specified trigger types.

Response

Successful response

nextPageTokenstring

Token to retrieve the next page of results, empty when no more results exist.

Changes