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

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

# AutomationWorkflowStepActionBase

## 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:
    AutomationWorkflowStepActionAgent:
      properties:
        action_type:
          type: string
        data:
          $ref: "#/components/schemas/StepActionAgentData"
        is_valid:
          type: boolean
      required:
        - action_type
        - data
      title: AutomationWorkflowStepActionAgent
      type: object
    AutomationWorkflowStepAddToCollectionAction:
      properties:
        action_type:
          type: string
        data:
          $ref: "#/components/schemas/StepAddToCollectionActionData"
        is_valid:
          type: boolean
      required:
        - action_type
        - data
      title: AutomationWorkflowStepAddToCollectionAction
      type: object
    StepActionAgentData:
      properties:
        agent_id:
          type: string
        run_name:
          type: string
      required:
        - agent_id
      title: StepActionAgentData
      type: object
    StepAddToCollectionActionData:
      properties:
        collection_id:
          type: string
      required:
        - collection_id
      title: StepAddToCollectionActionData
      type: object
    AutomationWorkflowStepActionBase:
      oneOf:
        - $ref: "#/components/schemas/AutomationWorkflowStepActionAgent"
        - $ref: "#/components/schemas/AutomationWorkflowStepAddToCollectionAction"
      title: AutomationWorkflowStepActionBase
```
