Skip to main content
POST
/
v2
/
action-runs
Create an Action Run
curl --request POST \
  --url https://api.zapier.com/v2/action-runs \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "data": {
    "action": "example_core:Vn7xbE60",
    "authentication": "example_QVaAreV1",
    "inputs": {
      "email": "me@example.com"
    }
  }
}'
{
  "data": {
    "type": "run",
    "id": "123e4567-e89b-12d3-a456-426614174000"
  }
}
Running actions via the Workflow API is currently in limited beta. If you would like access to run actions, please use this form to request access.
This API is rate limited.

Authorizations

Authorization
string
header
required

See our OAuth2 authentication documentation here: https://docs.zapier.com/powered-by-zapier/api-reference/authentication

Body

application/json
data
object
required

Data for the Action Run

Response

data
object
required

The response after an Action Run

I