This step assumes you have successfully issued a card using Card Issuancestep of this guide
Now that you have created a customer account and issued a first card, you are able to simulate card authorisations and process simulated transactions. To do so, you need to use /simulator/cards/{cardId}/authorisationPOST request.
Let's say we want to create an authorisation for β¬20 and automatically capture the funds:
{"amount":"20.0","currency":"EUR","capture":true}
If everything was successful, you will receive a response with status 201 (Created) which looks similar to the following:
As automatic capture happens asynchronously, you can verify it has been successfully captured and a new transaction created and processed by first making a GET request to /authorisations/{authorisationId}.