project.activated
Sent when a project’s status is switched to active from the dashboard’s Settings tab (or the equivalent API call). New transactions can be created again once this fires.
Headers
Section titled “Headers”| Header | Description |
|---|---|
X-Baiyar-Signature |
t=<unix timestamp>,v1=<hex HMAC-SHA256> — see Verifying Webhook Signatures |
Content-Type |
application/json |
Payload
Section titled “Payload”{ "id": "evt_QpL9jZ4mR1sVn6TdWX78", "type": "project.activated", "created_at": "2026-09-16T04:03:46Z", "data": { "id": "project_IChAi2NR4vzKN3SgEYPI", "status": "active" }}| Field | Type | Description |
|---|---|---|
id |
string | Unique event ID — use it to deduplicate retried deliveries, not data.id |
type |
string | Always project.activated |
created_at |
date-time | When the event was generated |
data.id |
string | The project’s public ID |
data.status |
string | Always active |
Testing
Section titled “Testing”There’s no sandbox simulator for this event — trigger it by actually switching a sandbox project to active from the dashboard and watching your endpoint receive the delivery within a few seconds.
Next steps
Section titled “Next steps”project.deactivated — the other status event.