Skip to content

Commit

Permalink
Fix JSON examples
Browse files Browse the repository at this point in the history
  • Loading branch information
nghi-ly committed Aug 5, 2024
1 parent 92b2a75 commit af2d646
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions website/docs/docs/deploy/webhooks.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ An example of a webhook payload for a run that's started:
```json
{
"accountId": 1,
"webhooksID": "wsu_12345abcde"
"webhooksID": "wsu_12345abcde",
"eventId": "wev_2L6Z3l8uPedXKPq9D2nWbPIip7Z",
"timestamp": "2023-01-31T19:28:15.742843678Z",
"eventType": "job.run.started",
Expand Down Expand Up @@ -110,7 +110,7 @@ An example of a webhook payload for a completed run:
```json
{
"accountId": 1,
"webhooksID": "wsu_12345abcde"
"webhooksID": "wsu_12345abcde",
"eventId": "wev_2L6ZDoilyiWzKkSA59Gmc2d7FDD",
"timestamp": "2023-01-31T19:29:35.789265936Z",
"eventType": "job.run.completed",
Expand Down Expand Up @@ -139,7 +139,7 @@ An example of a webhook payload for an errored run:
```json
{
"accountId": 1,
"webhooksID": "wsu_12345abcde"
"webhooksID": "wsu_12345abcde",
"eventId": "wev_2L6m5BggBw9uPNuSmtg4MUiW4Re",
"timestamp": "2023-01-31T21:15:20.419714619Z",
"eventType": "job.run.errored",
Expand Down

0 comments on commit af2d646

Please sign in to comment.