---
title: "Automations"
url: "https://earlyaccess.developers.bynder.com/apis/automations-api-1/versions/c7c13882-9e51-4554-bcb8-9517eda44741/schemas/Automations"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/automations-api-1/versions/c7c13882-9e51-4554-bcb8-9517eda44741.md

# Automations

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Automations API
  version: "1.0"
servers:
  - url: https://{your-bynder-domain}/
components:
  schemas:
    Automations:
      properties:
        automations:
          items:
            properties:
              actionMetaproperties:
                type: string
              actionOptions:
                type: string
              actionType:
                enum:
                  - SHOW_OPTION
                  - SHOW_METAPROPERTY
                  - PREFILL
                  - EMPTY
                  - SELECT
                  - DESELECT
                type: string
              automationId:
                type: string
              conditionType:
                enum:
                  - ALL
                  - ANY
                  - ANY_OPTION
                type: string
              triggerType:
                enum:
                  - SELECTED
                type: string
            required:
              - automationId
              - actionType
              - conditionType
              - triggerType
            type: object
          type: array
        metadata:
          properties:
            nextPage:
              type: string
          required:
            - nextPage
          type: object
      type: object
```
