Skip to content
View as Markdown

POST Send Test Webhook​

POST
/funnels/send-test-webhook

Send a test webhook request to a remote URL using sample subscriber data. Uses the current user's email to find a subscriber, or falls back to any subscribed contact. Supports GET and POST methods with custom headers and body data. Body data can be subscriber data or custom key-value pairs.

Authorizations​

ApplicationPasswords

WordPress Application Passwords — use Basic auth with your WordPress username and an application password in the format: username:application_password

Type
API Key (header: Authorization)

Request Body​

application/json
JSON
{
"data": {
"remote_url": "string",
"sending_method": "string",
"request_format": "string",
"body_data_type": "string",
"body_data_values": [
{
"data_key": "string",
"data_value": "string"
}
],
"header_type": "string",
"header_data": [
{
"data_key": "string",
"data_value": "string"
}
]
}
}

Responses​

Test webhook sent successfully.

application/json
JSON
{
"message": "string"
}

Playground​

Authorization
Body

Samples​

Powered by VitePress OpenAPI