Create new P2P transfer.
POST/operations/p2p-transfers
Transfer funds from one wallet to another within your organization (Master Account and Sub-account wallets are permitted). Insert the UUID of the wallet you want to send from under the header section (x-wallet-uuid). If you leave the x-wallet-uuid param empty, your default wallet will be settled. Enter the destination wallet and all transaction information on the request body below. Execute to conclude the transaction.
Request
Header Parameters
The transaction ID is a UUID (v4) used to uniquely identify the object that will be created. All objects must have an identifier.
Sender Wallet UUID (if empty, your default Wallet UUID will be settled)
The nonce ID is a UUID (v4) used to uniquely identify the requisition. All requisitions must have an identifier.
- application/json
Body
required
Destination wallet UUID.
Transfer currency amount symbol.
Transfer amount in cents.
Transfer fee in cents.
Transfer description.
Responses
- 201
- 400
- 401
- 422
Transfer response.
- application/json
- Schema
- Example (from schema)
Schema
Transfer UUID.
Transfer Operation UUID.
Transfer currency amount.
Transfer amount in cents.
Transfer fee in cents.
Transfer description.
Transfer created at.
{
"id": "f6e2e084-29b9-4935-a059-5473b13033aa",
"operation_id": "f6e2e084-29b9-4935-a059-5473b13033aa",
"amount_currency": "BRL",
"amount": 1299,
"fee": 10,
"description": "string",
"created_at": "2024-04-24T13:52:51.045Z"
}
If any required params are missing or has invalid format or type.
User authentication failed.
If any required params are missing or has invalid format or type.