Skip to main content
POST
/
webhooks
/
{triggerId}
/
trigger
Trigger bot execution
curl --request POST \
  --url https://www.lilbots.io/api/webhooks/{triggerId}/trigger \
  --header 'Content-Type: application/json' \
  --header 'X-Key: <api-key>' \
  --data '
{
  "INPUT": "VALUE"
}
'
{
  "success": true,
  "invocation": {
    "id": "inv_12345678"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.lilbots.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Key
string
header
required

The key associated with the trigger. This key is displayed when you view the trigger in the UI.

Path Parameters

triggerId
string
required

The ID of the trigger

Body

application/json

Any data that you want to send to your bot as inputs

The body is of type object.

Response

Bot execution triggered successfully

success
boolean
invocation
object