Requests without request ID
Duplicated POST without request ID and the same data
We will make another API call without the request ID, but the data from the first call remains the same.
The response shows that the new account with accountId: ID-1293
was created and activated.
Duplicated POST without request ID but changed data
This time, we will make an additional API call without the request ID. However, we will change the currency from GBP to EUR.
The response shows that the new account with accountId: ID-1294
was created and activated.
Summary for not using the request ID
If you make multiple POST calls to the same API endpoint without including the header parameter x-request-id
, each subsequent call is treated as unique and will receive a separate response.
Last updated
Was this helpful?