---
title: "Fetches a list of available automation workflow triggers."
url: "https://earlyaccess.developers.bynder.com/apis/automation-workflow-api-1/versions/428d2b99-ec99-455a-8d22-c0d61a9bb810/operations/getTriggers"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/automation-workflow-api-1/versions/428d2b99-ec99-455a-8d22-c0d61a9bb810.md

# Fetches a list of available automation workflow triggers.

`GET` `/triggers`

Operation ID: `getTriggers`

Fetches a list of available automation workflow triggers. <b>Note:</b> The `RelativeDate` trigger must be used with the `Archived` condition.

## Responses

- `200`
- `400`
- `401`

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Automation Workflow API
  version: 1.0.0
servers:
  - url: https://{your-bynder-domain}/api/1/automation-workflow/
paths:
  /triggers:
    get:
      description: >
        
        Fetches a list of available automation workflow triggers.


        <b>Note:</b> The `RelativeDate` trigger must be used with the `Archived`
        condition.
      operationId: getTriggers
      responses:
        "200":
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/AutomationWorkflowTriggersResponse"
          description: ""
        "400":
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/ErrorResponse"
          description: ""
        "401":
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/ErrorAuthorizationResponse"
          description: ""
      security:
        - {}
        - httpAuth: []
      summary: Fetches a list of available automation workflow triggers.
      tags:
        - Automation Workflow Triggers
security:
  - {}
  - httpAuth: []
components:
  schemas:
    AutomationWorkflowTriggersResponse:
      properties:
        triggers:
          items:
            $ref: "#/components/schemas/AutomationWorkflowTrigger"
          type: array
      title: AutomationWorkflowTriggersResponse
      type: object
    ErrorResponse:
      properties:
        message:
          type: string
      required:
        - message
      title: ErrorResponse
      type: object
    ErrorAuthorizationResponse:
      properties:
        message:
          type: string
      required:
        - message
      title: ErrorAuthorizationResponse
      type: object
    AutomationWorkflowTrigger:
      properties:
        name:
          type: string
      required:
        - name
      title: AutomationWorkflowTrigger
      type: object
  securitySchemes:
    httpAuth:
      scheme: bearer
      type: http
```
