Rate Amended
Event Type
rate_amended
Company-only webhook
This event is not available for agency webhooks.
When It Fires
Company-only. Sent when a rate is amended. Includes company, project, tier and agency-specific rate records and rate imports. Payload includes only the rate ID; fetch full details from GET /rates/{id}.
Fetch the Full Object
The payload contains the full object ID in data.rate.id. Fetch the record with GET /rates/{id}.
Delivery
- Method:
POST - Content-Type:
application/json - Delivery guarantee: at-least-once
Delivery Headers
| Header | Description |
|---|---|
Content-Type | application/json |
X-Requidex-Event | rate_amended |
X-Requidex-Event-Id | Unique event delivery ID |
X-Requidex-Signature | HMAC SHA-256 signature of the raw request body |
X-Requidex-Timestamp | UTC timestamp used when signing the payload |
See signature verification and retry behavior for the shared delivery contract.
Payload Fields
| Field | Type | Required | Description |
|---|---|---|---|
id | string | Yes | Unique event ID |
type | string | Yes | rate_amended |
createdAt | string | Yes | Event timestamp in ISO 8601 format |
data.rate.id | string | Yes | Full object ID |
Payload Example
{
"id": "evt_01K1WEBHOOKEXAMPLE",
"type": "rate_amended",
"createdAt": "2026-09-10T12:00:00.000Z",
"data": {
"rate": {
"id": "507f1f77bcf86cd799439013"
}
}
}