Skip to main content
POST
/
wallet
/
transfer-p2p
Peer-to-peer transfer
curl --request POST \
  --url https://olive-gateway-a6ba.onrender.com/api/v1/wallet/transfer-p2p \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount": "100.00",
  "pin": "1234",
  "recipient_card_serial": "CARD0002",
  "sender_id": "subscriber-uuid"
}
'
{}

Authorizations

Authorization
string
header
required

API Key for third-party integrations (WhatsApp, Smart PAY, VULT). Format: 'Bearer olive_live_xxxxxxxxxxxxx'

Body

application/json

P2P transfer details

amount
string
required

Accepts decimal format like "100.00" or "100"

Example:

"100.00"

pin
string
required
Example:

"1234"

recipient_card_serial
string
required

Supports any alphanumeric: CARD0001, 48290173K, etc.

Example:

"CARD0002"

sender_id
string
required
Example:

"subscriber-uuid"

memo
string
Example:

"Payment for lunch"

Response

Transfer successful

The response is of type object.