Skip to content

Commit

Permalink
Merge pull request #373 from novuhq/main
Browse files Browse the repository at this point in the history
Main
  • Loading branch information
unicodeveloper authored Nov 14, 2023
2 parents e7091f8 + ee1fd71 commit 805c804
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 131 deletions.
3 changes: 3 additions & 0 deletions additional-resources/idempotency.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ icon: 'repeat-1'

Novu supports retrying and concurrent requests for `POST` and `PATCH` operations, ensuring the safety and reliability of your requests, particularly in scenarios where network issues or communication problems can introduce uncertainty into request outcomes. Idempotent requests are essential for business-critical applications, such as for ensuring only once delivery of your notifications.

<Note>
This feature will be available with 0.22.0 release.
</Note>
## Performing an Idempotent Request

To make an idempotent request, include the `Idempotency-Key: <key>` header in your request. The idempotency key should be a unique client-generated value with sufficient entropy to prevent collisions. We recommend using V4 UUIDs as your idempotency keys.
Expand Down
129 changes: 0 additions & 129 deletions additional-resources/rate-limits.mdx

This file was deleted.

2 changes: 1 addition & 1 deletion api-reference/subscribers/create-subscriber.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ openapi: post /v1/subscribers
<RequestExample>

```bash cURL
curl --location 'htts://api.novu.co/v1/subscribers' \
curl --location 'https://api.novu.co/v1/subscribers' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'Authorization: ApiKey <NOVU_API_KEY>' \
Expand Down
1 change: 0 additions & 1 deletion mint.json
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,6 @@
{
"group": "Additional Resources",
"pages": [
"additional-resources/rate-limits",
"additional-resources/idempotency",
"additional-resources/data-migrations",
"additional-resources/glossary",
Expand Down

0 comments on commit 805c804

Please sign in to comment.