ZAPPYPAG
  1. withdraw
ZAPPYPAG
  • Identity and Access Management
    • auth
      • Login
      • Logout
      • RefreshToken
    • bff
      • Session
    • Info
      GET
    • Health
      GET
  • Banking as a Service
    • account
      • keys
        • CreatePixKey
        • GetPixKeys
        • GetPixKey
        • CancelPixKey
        • GetPixKeyInfo
      • pix
        • GeneratePixQRCode
        • GetPixQRCode
        • GetPixInTransactions
        • GetPixInRefunds
        • GetPixRefund
        • GenerateRefundPixIn
        • CancelPixQRCode
      • withdraw
        • BankAccountWithdraw
          POST
        • PixAccountWithdraw
          POST
        • GetAccountWithdraw
          GET
        • CancelAccountWithdraw
          DELETE
        • GetAccountWithdraws
          POST
      • balance
        • GetAcountBalance
        • GetAccountTransactions
      • report
        • GetAccountReport
    • Info
      GET
    • Health
      GET
    • ErrorCodes
      GET
  • Back Office
    • account
      • GetAccounts
      • GetAccount
      • GetBalance
      • GetPixKeys
      • GetWebhooks
    • Info
      GET
    • Health
      GET
  1. withdraw

BankAccountWithdraw

POST
https://stg.ws.zappy.com.br/baas/v1/account/{{id}}/withdraw

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST 'https://stg.ws.zappy.com.br/baas/v1/account//withdraw' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "method": "bank_account",
    "reference": "REF-BANK-CNPJ-005",
    "destination": {
        "name": "Empresa ABC Ltda",
        "tax_number": "12345678000190"
    },
    "bank_account": {
        "type": "current",
        "bank_number": "341",
        "bank_branch": "1111",
        "bank_account": "999999",
        "bank_account_digit": "9"
    },
    "description": "B2B payment to company",
    "date": "2025-01-10",
    "value": 15000.00
}'
Response Response Example
{}
Modified at 2025-11-04 18:44:55
Previous
CancelPixQRCode
Next
PixAccountWithdraw
Built with