POST
/
core
/
accounts
/
test-helpers
/
bank-deposits
Simulate bank deposit
curl --request POST \
  --url https://api.enterprise.sandbox.uphold.com/core/accounts/test-helpers/bank-deposits \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "network": "fps",
  "sortCode": "123456",
  "accountNumber": "12345678",
  "reference": "UH12345678",
  "asset": "GBP",
  "amount": "100",
  "remitter": {
    "name": "John Doe",
    "sortCode": "654321",
    "accountNumber": "87654321"
  }
}'
{
"bankDeposit": {
"network": "fps",
"sortCode": "123456",
"accountNumber": "12345678",
"reference": "UH12345678",
"asset": "GBP",
"amount": "100",
"remitter": {
"name": "John Doe",
"sortCode": "654321",
"accountNumber": "87654321"
}
}
}

Authorizations

Authorization
string
header
required

OAuth 2.0 authentication.

Body

application/json

Response

202
application/json

Bank deposit simulated.

The response is of type object.