-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from akhill10/feat/bulk-broadcase-cancel-events
feat: bulk, broadcast and cancel Trigger Events
- Loading branch information
Showing
7 changed files
with
285 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"payload": { | ||
"name": "Hello World", | ||
"organization": { | ||
"logo": "https://happycorp.com/logo.png" | ||
} | ||
}, | ||
"transactionId": "7425cb40d22507199a000009" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"events": [ | ||
{ | ||
"name": "event1", | ||
"to": { | ||
"subscriberId": "[email protected]", | ||
"lastName": "Doe", | ||
"firstName": "John", | ||
"email": "[email protected]" | ||
}, | ||
"payload": { | ||
"name": "Hello World" | ||
} | ||
}, | ||
{ | ||
"name": "event2", | ||
"to": { | ||
"subscriberId": "[email protected]", | ||
"lastName": "Jones", | ||
"firstName": "Jack", | ||
"email": "[email protected]" | ||
}, | ||
"payload": { | ||
"name": "Hello World" | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[ | ||
{ | ||
"data": { | ||
"acknowledged": true, | ||
"status": "processed", | ||
"transactionId": "d2239acb-e879-4bdb-ab6f-365b43278d8f" | ||
} | ||
}, | ||
{ | ||
"data": { | ||
"acknowledged": true, | ||
"status": "processed", | ||
"transactionId": "r2239acb-e879-kjd7-ab6f-365b43278d8e" | ||
} | ||
} | ||
] |