Group Webhooks
Group webhooks let you run every test in a group with one HTTP call. Works with any CI/CD pipeline, deployment tool, or custom automation.
Setup
- Open your project → Tests tab.
- Expand a group and click the trigger badge (lightning icon).
- Toggle Enable webhook on.
- Click Save.
- Copy the URL - the secret is shown once.
Trigger
Enabled tests in the group are queued against the project’s configured URL. Disabled tests are skipped.
Optional body
You can pass JSON to attach commit metadata:
You can also set environment to control how the run appears in the results list:
productionstagingpreview
If you pass targetUrl without environment, the run is marked as preview.
Use environment: "staging" for staging deployment tests.
Mobile app override
You can override the app build used by mobile tests in the group. The build must match the requested run platform (ios or android).
By bundle ID — resolves to the latest uploaded app matching that bundle identifier:
By app ID — targets a specific uploaded build by its UUID (returned from the upload API):
Use appId when multiple builds share the same bundle ID and you need to pin a specific upload.
By remote artifact — provide an HTTPS URL and filename for remote build artifacts:
Only one of bundleId, appId, or artifactUrl can be provided per request.
Response
When the batch contains iOS tests, the response includes metadata.mobile:
source: "test_default"means each iOS test used its saved app selection.source: "app_id"means the webhook used an already uploaded project app, selected bybundleIdorappId.source: "artifact_url"means TesterArmy imported the artifact for this batch.
Artifact-imported apps are temporary. They are removed automatically after every run in the webhook batch reaches a terminal state.
Failure notifications
When a webhook-triggered batch completes and any test fails, TesterArmy sends the failure summary to connected chat providers such as Slack or Discord. If no chat provider delivers, TesterArmy falls back to email.
Batches triggered with commitSha can still report status back through GitHub, but chat notifications remain project-level alerts for the completed batch.
Limits
- 1 webhook per group. Delete and recreate to regenerate the secret.
- Subject to your team’s usage limits - returns
429if exceeded. - Webhook must be active (saved) to accept requests. Inactive webhooks return
403.
