Create a mock Wire payment
POST {{baseUrl}}/v1/mocks/payments/wire
In the sandbox environment, initiate a mock wire payment that mimics the behavior of funds sent through the bank (wire) account linked to master wallet.
Body Params
trackingRef string (REQUIRED) Wire tracking reference that needs to be set in the wire reference to beneficiary field. This field is retrievable through the response during wire creation or via the bank instruction endpoint.
amount object (REQUIRED)
amount string (REQUIRED) Magnitude of the amount, in units of the currency, with a
.
.currency string (REQUIRED) Currency code.
beneficiaryBank object (REQUIRED)
- accountNumber string (REQUIRED) Virtual account number or Circle corporate Silvergate Wire account number that needs to be set as destination.
Request Body
{"trackingRef"=>"CIR2AZYEHT", "amount"=>{"amount"=>"3.14", "currency"=>"USD"}, "beneficiaryBank"=>{"accountNumber"=>"123180387879"}}
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Content-Type | string | ||
Accept | string |
RESPONSES
status: Created
{"data":{"trackingRef":"CIR2AZYEHT","beneficiaryBank":{"accountNumber":"123180387879"},"amount":{"amount":"3.14","currency":"USD"},"status":"pending"}}