Skip to main content
POST
/
actions
/
v1
/
stored-actions
/
{stored_action_id}
/
run
Execute a StoredAction
curl --request POST \
  --url https://api.zapier.com/actions/v1/stored-actions/{stored_action_id}/run \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "data": {
    "inputs": {
      "message": "Hello World!"
    },
    "page": "0"
  }
}
'
{
  "data": {
    "type": "run",
    "id": "123e4567-e89b-12d3-a456-426614174000"
  }
}

Authorizations

Authorization
string
header
required

OAuth 2.0 authentication.

Path Parameters

stored_action_id
string<uuid>
required

Body

application/json
data
object
required

The shape of a request payload accepted when running a stored action.

Response

Acknowledges the request to execute a StoredAction

data
object
required

The data returned after running a stored action