Simulator
Last updated
Last updated
To verify a customer with pending verification and proceed with activation, make a PATCH
request to /simulator/customers/{customerId}/verify
.
To reject a customer with pending verification, make a PATCH
request to /simulator/customers/{customerId}/reject
.
To approve a pending card issuance request and proceed with activation, make a PATCH
request to /simulator/cards/{cardId}/issue
.
To fail a pending card issuance request, make a PATCH
request to /simulator/cards/{cardId}/fail
.
To initiate a card authorisation for a specified card, make a POST
request to /simulator/cards/{cardId}/authorisation
. You have an option to automatically capture the created authorisation upon approval.
To capture a pending card authorisation which was not initiated with automatic capture mode, make a PATCH
request to /simulator/authorisations/{authorisationId}/capture
.
To release a pending card authorisation which was not initiated with automatic capture mode, make a PATCH
request to /simulator/authorisations/{authorisationId}/release
.
Simulates customer verification success
/simulator/customers/{customerId}/verify
Unique customer ID
HTTP message signature
HTTP message signature input
Idempotency key (UUID)
No body
Simulates customer verification rejection
/simulator/customers/{customerId}/reject
Unique customer ID
HTTP message signature
HTTP message signature input
Idempotency key (UUID)
No body
Simulates card issuing success
/simulator/cards/{cardId}/issue
Unique card ID
HTTP message signature
HTTP message signature input
Idempotency key (UUID)
No body
Simulates card issuing failure
/simulator/cards/{cardId}/fail
Unique card ID
HTTP message signature
HTTP message signature input
Idempotency key (UUID)
No body
Simulates card authorisation
/simulator/cards/{cardId}/authorisation
Unique card ID
HTTP message signature
HTTP message signature input
Idempotency key (UUID)
Content digest
Amount to be authorised
Whether to capture the authorisation immediately
Authorisation currency (ISO-4217)
Simulates card authorisation capture
/simulator/authorisations/{authorisationId}/capture
Unique authorisation ID
HTTP message signature
HTTP message signature input
Idempotency key (UUID)
No body
Simulates card authorisation release
/simulator/authorisations/{authorisationId}/release
Unique authorisation ID
HTTP message signature
HTTP message signature input
Idempotency key (UUID)
No body