# Generate a test webhook payload and signature Generate a signed test webhook payload Generates a signature for an arbitrary JSON payload using the provided secret. This is intended for debugging webhook integrations. Business Applications: - Webhook troubleshooting - Signature validation testing Real Example: bash curl --location 'https://{{host}}/api/v1/webhook/test/generate' \ --header 'Authorization: bearer {{token}}' \ --header 'Content-Type: application/json' \ Endpoint: POST /api/v1/webhook/test/generate Version: 1.0.0 Security: BearerAuth ## Response 200 fields (application/json): - `data` (object) - `data.isValid` (boolean) Isvalid - `data.payload` (object) Payload - `data.signature` (string) Signature - `data.secret` (string) Secret - `error` (object,null) - `meta` (object) - `meta.success` (boolean) - `meta.message` (string) - `meta.timestamp` (string) - `meta.version` (string) ## Response 400 fields ## Response 401 fields ## Response 403 fields ## Response 500 fields