POST
/
action
/
trigger
curl --request POST \
  --url https://api.nango.dev/action/trigger \
  --header 'Connection-Id: <connection-id>' \
  --header 'Content-Type: application/json' \
  --header 'Provider-Config-Key: <provider-config-key>' \
  --data '{
  "action_name": "<string>",
  "input": {}
}'
{
  "your-properties": "The data returned by the action"
}

Headers

Connection-Id
string
required

The connection ID used to create the connection.

Provider-Config-Key
string
required

The integration ID used to create the connection (aka Unique Key).

Body

application/json
action_name
string
required

The name of the action to trigger.

input
object

The necessary input for your action's 'runAction' function.

Response

200 - application/json
your-properties
string

The data returned by the action