Create a settlement deposit

Availability of this endpoint may vary based on the settlement process agreed upon between Bitpanda and its partners.

This endpoint is designed for partners to notify us before making a bank deposit, essentially a promise for payment. Upon receiving the notification, Bitpanda will create a pending deposit. Once the receipt of the deposit is confirmed, it will be updated to finished state.

SecuritybearerAuth
Request
Request Body schema: application/json

Transaction details

fiat_symbol
required
string
reference
required
string

The unique 10-digit code that is used to make payments between the Partner and Bitpanda

amount
required
string

Deposit amount containing max 24 digits for the integer part and 8 digits for the fractional part

sepa_type
string
Enum: "instant" "classic"
Responses
201

New transaction has been created

401

Unauthorized

422

Error

429

Too Many Requests

500

Error

503

Maintenance or Service unavailable

post/v1/deposit
Request samples
application/json
{
  • "fiat_symbol": "EUR",
  • "reference": "1638305327-test-deposit",
  • "amount": "123.45",
  • "sepa_type": "classic"
}
Response samples
application/json
{
  • "data": {
    }
}