API ReferenceWorkflows
Back to Platform

POST /workflows/{id}/actions

POST
/workflows/{id}/actions

POST operation for /workflows/{id}/actions

Authorization

ApiKeyAuth
Authorization<token>

API key authentication. Format: Your API key (no "Token" prefix needed)

In: header

Path Parameters

id*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://dev-rest.onboard.io/workflows/string/actions" \  -H "Content-Type: application/json" \  -d '{    "action_type": "send_email",    "config": {},    "trigger": "string"  }'
{
  "id": 1,
  "action_type": "send_email",
  "action_type_display": "string",
  "config": {},
  "trigger": "string"
}
Empty
Empty
Empty

How is this guide?