---
title: "AutomationWorkflowActionsResponse"
url: "https://earlyaccess.developers.bynder.com/apis/automation-workflow-api-1/versions/428d2b99-ec99-455a-8d22-c0d61a9bb810/schemas/AutomationWorkflowActionsResponse"
---

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

# AutomationWorkflowActionsResponse

## 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/
components:
  schemas:
    AutomationWorkflowAction:
      properties:
        action_type:
          type: string
      required:
        - action_type
      title: AutomationWorkflowAction
      type: object
    AutomationWorkflowActionsResponse:
      properties:
        actions:
          items:
            $ref: "#/components/schemas/AutomationWorkflowAction"
          type: array
        max_actions_limit:
          format: int32
          type: integer
      required:
        - max_actions_limit
      title: AutomationWorkflowActionsResponse
      type: object
```
