post_webhook
Send data to specified webhooks by providing slug, data payload, and authentication token, enabling integration with external systems.
Instructions
Post data to a webhook
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | The data to be sent in the request body | |
slug | Yes | The webhook slug (e.g., "air-generic-url-webhook") | |
token | Yes | The webhook token for authentication |
Input Schema (JSON Schema)
{
"properties": {
"data": {
"description": "The data to be sent in the request body",
"type": "object"
},
"slug": {
"description": "The webhook slug (e.g., \"air-generic-url-webhook\")",
"type": "string"
},
"token": {
"description": "The webhook token for authentication",
"type": "string"
}
},
"required": [
"slug",
"data",
"token"
],
"type": "object"
}