Skip to main content
POST
/
v1
/
automations
/
webhook
/
{token}
Fire a Custom Webhook Automation
curl --request POST \
  --url https://api.replicas.dev/v1/automations/webhook/{token} \
  --header 'Content-Type: application/json' \
  --data '
{
  "anything": "you want",
  "nested": {
    "too": true
  }
}
'
{
  "accepted": true
}

Path Parameters

token
string
required

The automation's webhook_token. Treat this like an API key.

Body

application/json

Any JSON value. The full body is embedded into the automation's prompt.

Example:
{
  "anything": "you want",
  "nested": { "too": true }
}

Response

Execution queued

accepted
boolean
required