Get P2P Transfer by ID
GET/operations/p2p-transfers/:id
Retrieve information about a specific P2P transfer by entering its ID and executing the request.
Request
Path Parameters
id stringrequired
Transfer UUID.
Header Parameters
x-wallet-uuid string
Sender Wallet UUID (if empty, your default Wallet UUID will be settled)
nonce stringrequired
The nonce ID is a UUID (v4) used to uniquely identify the requisition. All requisitions must have an identifier.
Responses
- 200
- 400
- 401
- 422
P2PTransfer received.
- application/json
- Schema
- Example (from schema)
Schema
id stringrequired
Transfer UUID.
operation_id stringrequired
Transfer Operation UUID.
amount_currency stringrequired
Transfer currency amount.
amount numberrequired
Transfer amount in cents.
fee numberrequired
Transfer fee in cents.
description stringnullable
Transfer description.
created_at date-timerequired
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-11-19T02:02:06.328Z"
}
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.
Loading...