HTTP Webhooks
HTTP Webhooks for Playwright and Cypress tests dashboard
Examples
Example of HTTP POST request with cypress tests run data
curl --location --request POST 'https://yourserver.com/webhook/currents.dev' \
--header 'Content-Type: application/json' \
--data-raw '{
"event": "RUN_START",
"runUrl": "https://app.currents.dev/run/950a13c3edf4f28b6e8ce301a404b4aa",
"buildId": "demo-build-cdx3314",
"commit": {
"authorEmail": "[email protected]",
"authorName": "John Doe",
"defaultBranch": "main",
"branch": "feature-A",
"message": "feat: change button color",
"remoteOrigin": "https://github.com/org/repo.git",
"sha": "5a7edc9a156e417068060d67109021351fc7d9b8"
},
"failures": 0,
"flaky": 0,
"overall": 1,
"passes": 1,
"pending": 0,
"retries": 0,
"skipped": 0
}'HTTP Webhook Integration payload schema
Security
Timestamp
Custom Headers

Last updated
Was this helpful?