Skip to main content
POST
/
customers
/
{customer_id}
/
wallets
/
{wallet_id}
/
deposit
Deposit to Wallet (Staging Only)
curl --request POST \
  --url https://sandbox-api.prava.space/v1/customers/{customer_id}/wallets/{wallet_id}/deposit \
  --header 'Api-Key: <api-key>' \
  --header 'Content-Type: application/json' \
  --header 'Idempotency-Key: <idempotency-key>' \
  --data '{
  "amount": "<string>"
}'
{
  "data": {
    "wallet_balance": {
      "currency": "USD",
      "amount": "150.00"
    }
  },
  "meta": {
    "request_id": "req_12345",
    "timestamp": "2025-10-15T05:36:43.000Z",
    "idempotency_key": "ee461e0f-1808-4018-9ee1-2744a8e822f7"
  }
}

Authorizations

Api-Key
string
header
required

Headers

Idempotency-Key
string<uuid>
required

A unique key for the request to ensure idempotency.

Path Parameters

customer_id
string<uuid>
required
wallet_id
string<uuid>
required

Body

application/json
amount
string

Response

Deposit successful.

The response is of type any.

I