@@ -4,10 +4,10 @@ Tigris object notifications allow you to receive notifications via a webhook.
44These events allow you to keep track of when objects are created, updated, or
55deleted for a specific bucket.
66
7- ## Enable Object Notifications via Console (TODO)
7+ ## Enable Object Notifications via Tigris Dashboard
88
99To enable object notifications, you need to set up a webhook in the Tigris
10- Console . This can be done in ` Settings ` for the bucket.
10+ Dashboard . This can be done in ` Settings ` for the bucket.
1111
1212Here's a short video demonstration on enabling object notifications:
1313
@@ -19,12 +19,12 @@ Here's a short video demonstration on enabling object notifications:
1919
2020Object notifications are delivered via a webhook, and obey the following rules:
2121
22- - Tigris will make an HTTP POST post request to the webhook URL with the event
22+ - Tigris will make an HTTP POST request to the webhook URL with the event
2323 payload.
2424- A ` 200 ` status code acknowledges the request was successful.
2525- If a ` 200 ` status is not received, Tigris will retry for a maximum of 3 times
2626 before giving up and marking the notifications as sent.
27- - If a webhook request takes longer than 5 seconds the request will be aborted
27+ - If a webhook request takes longer than 10 seconds the request will be aborted
2828 and retried.
2929
3030## Webhook Authentication
@@ -60,7 +60,7 @@ Each notification will be a JSON object with the following fields:
6060
6161| Property | Type | Description |
6262| ------------ | ------ | ------------------------------------------------------------ |
63- | Records | Array | An array of notification events |
63+ | events | Array | An array of notification events |
6464| eventVersion | String | Version of the event structure |
6565| eventSource | String | Source of the event |
6666| eventName | String | Type of event (e.g., "OBJECT_CREATED_PUT", "OBJECT_DELETED") |
@@ -75,7 +75,7 @@ An example notification payload is:
7575
7676``` json
7777{
78- "Records " : [
78+ "events " : [
7979 {
8080 "eventVersion" : " 1" ,
8181 "eventSource" : " tigris" ,
0 commit comments