LogoLogo
HomeBlogLoginSignup
  • Get started
  • Guides
  • Reference
  • Banking API
    • Entities
    • Counterparties
    • Institutions
    • Bank accounts
    • Virtual accounts
    • Collecting
      • Dynamic QR codes
      • Static QR codes
      • Refund
    • Payment
      • Pix Key
      • Pix Brcode
    • Transfer
    • Documents
      • Collecting
      • Collecting - Refund
      • Payment
      • Payment - Refund
      • Transfer
    • Checkout
    • Developers
      • Webhooks
Powered by GitBook
On this page

Was this helpful?

  1. Banking API

Transfer

PreviousPix BrcodeNextDocuments

Last updated 4 months ago

Was this helpful?

Transfer amount between virtual accounts

post

Transfer amount between virtual accounts

Body

Body params to generate a transfer

amountintegerRequired

Amount

descriptionstringOptional

Pix description

external_idstringOptional

External ID

from_virtual_account_idstring · uuidRequired

From virtual account ID

to_virtual_account_idstring · uuidRequired

To virtual account ID

Responses
200
Transfer
application/json
401
Unauthorized
application/json
404
Unprocessable Entity
application/json
500
Internal server error
application/json
post
POST /banking/cashout/transfer HTTP/1.1
Host: api.sandbox.trio.com.br
Content-Type: application/json
Accept: */*
Content-Length: 202

{
  "amount": 100,
  "description": "description pix",
  "external_id": "external_id",
  "from_virtual_account_id": "1a760495-cb95-4023-96e8-0cff5776b010",
  "to_virtual_account_id": "1a760495-cb95-4023-96e8-0cff5776b010"
}
{
  "data": {
    "transfer_document_id": "41234d60-f6a9-4c9c-8cc3-5769ce9bbea2"
  }
}