Inovpay-API
  1. Banking
Inovpay-API
  • Comece Por Aqui
  • Autenticação
    • Gerar Token
      POST
  • Estabelecimentos
    • Criar Estabelecimento
      POST
    • Listar Estabelecimentos
      GET
    • Detalhar Estabelecimento
      GET
    • KYC Estabelecimento
      GET
  • Banking
    • Buscar Saldo
      GET
    • Solicitar Saque
      POST
    • Detalhar Saque
      GET
    • Listar Solicitações de Saque
      GET
  • Vendas
    • Criar Transação Crédito
      POST
    • Criar Transação PIX
      POST
    • Listar Transações
      GET
    • Detalhar Transação
      GET
    • QR Code PIX
      GET
    • Simulate Transações
      POST
  • Vendas Com Split
    • Criar Transação Crédito - Com Split
      POST
    • Criar Transação PIX - Com Split
      POST
    • Detalhar Split
      GET
  • Antifraude
    • Antifraude 3DS
    • Finalizar Transação 3DS
      POST
  • Webhooks
    • Eventos Webhook
  1. Banking

Solicitar Saque

POST
/withdraw
Esse endpoint cria novos estabelecimentos

Requisição

Authorization
Forneça seu token bearer no cabeçalho
Authorization
ao fazer requisições para recursos protegidos.
Exemplo:
Authorization: Bearer ********************
Parâmetros Header

Parâmetros Bodyapplication/json

Examples

Respostas

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/withdraw' \
--header 'establishment_id: 155104' \
--header 'idempotency_key: dd59838-0e18-4c3b-8945-a494f7' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
  "amount": 1100,
  "key_PIX": "19971425466",
  "key_type": "CELULAR",
  "branch_number": "0001",
  "branch_check_digit": "1",
  "account_number": "9999999",
  "account_check_digit": "1",
  "account_type": "CHECKING",
  "bank_code": "237",
  "beneficiary_name": "Inovpay LTDA",
  "beneficiary_document": "41261636000174",
  "metadata": "obss"
}'
Response Response Example
{
    "status": "success",
    "response": {
        "transfer": {
            "amount": 1100,
            "status": "PENDING",
            "establishment_id": 155104,
            "idempotency_key": "dd59838-0e18-4c3b-8945-a494f7",
            "metadata": "obs",
            "created_at": "2025-10-23T03:15:03.425Z",
            "transfer_id": 10001,
            "account_type": "CHECKING",
            "beneficiary_name": "Inovpay LTDA",
            "account_check_digit": "1",
            "branch_check_digit": "1",
            "branch_number": "0001",
            "key_PIX": "19971425466",
            "account_number": "9999999",
            "bank_code": "237",
            "beneficiary_document": "41261636000174",
            "key_type": "CELULAR",
            "_id": "1761189305813x785974683273686900"
        }
    }
}
Modificado em 2025-10-23 03:42:01
Página anterior
Buscar Saldo
Próxima página
Detalhar Saque
Built with