Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

For and example of new request creation with preset data, please refer to this page: Create a new request with preset data

Otherwise, if you want to start from scratch, please refer to this page: Create a new request without preset data

The idempotency key

An idempotency key is a unique identifier included in a request to ensure that even if the request is sent multiple times, it will only be processed once. Imagine you’re ordering something online and accidentally click the “Submit Order” button twice. Without an idempotency key, the system might process your order twice, charging you twice and sending you two of the same item. With an idempotency key, the system recognizes that the second request is a duplicate and ignores it, preventing any unwanted duplicates.

...