Requests with same request ID
Initial POST request
We will create a new account for a person by making the following API call.
Create account
POST
https://account-api.sandbox.tuumplatform.com/api/v4/persons/ID-3419/accounts
Below is an example request body of the API call for creating an account.
As a result, a new account with accountId: ID-1292
was created and activated.
Duplicated POST request
We will make the API call again without changing the request ID and using the same request data.
The response we received is identical to the initial call, confirming the creation of the account with the ID-1292
. No new account was created.
Duplicated POST request with changed data
We will repeat the API call using the same request ID but with updated request data. We will change the currency from GBP to USD.
Below is an example request body for creating an account with the updated currency.
As a result, no new account is created. However, the account currency on the existing account ID-1292
is updated to USD as requested.
Summary for using the same request ID
If you make multiple POST calls to the same API endpoint using the same value for the x-request-id
header parameter, all subsequent calls will receive the same response as the initial call. This principle also holds even if you use different data in the request body of a repeated request.
Last updated
Was this helpful?