POST
/
deposits
/
payment-method
curl --request POST \
  --url https://api.exchange.coinbase.com/deposits/payment-method \
  --header 'Content-Type: application/json' \
  --header 'cb-access-key: <api-key>' \
  --header 'cb-access-passphrase: <api-key>' \
  --header 'cb-access-sign: <api-key>' \
  --header 'cb-access-timestamp: <api-key>' \
  --data '{
  "amount": "<string>",
  "payment_method_id": "<string>",
  "currency": "<string>"
}'
{
  "id": "<string>",
  "amount": "<string>",
  "currency": "<string>",
  "payout_at": "<string>",
  "fee": "<string>"
}

Deposit funds from a payment method

See Get all payment methods. The SEPA payment method is not allowed for depositing funds because it is a push payment method.

API Key Permissions

This endpoint requires the “transfer” permission. API key must belong to default profile.

Authorizations

cb-access-key
string
header
required
cb-access-passphrase
string
header
required
cb-access-sign
string
header
required
cb-access-timestamp
string
header
required

Body

application/json

Response

200
application/json

A successful response.

The response is of type object.