Bynet
  1. Transfers
Bynet
  • 🚀 Introdução à API
  • 📦 Criar Pedido
  • My company
    • Get all data
      GET
    • Update
      PUT
    • Update documents
      PUT
    • Get by ID
      GET
    • Update other info
      PUT
  • Products
    • Create
      POST
    • Find All
      GET
    • Find by ID
      GET
    • Update
      PUT
    • Delete
      DELETE
    • Update Status
      PUT
  • Bank
    • Create
      POST
    • Find all
      GET
    • Find by ID
      GET
    • Find pre bank
      GET
  • Transactions
    • Find All
      GET
    • Create
      POST
    • Find by ID
      GET
    • Update delivery status
      PUT
    • Export Excel
      POST
    • Summary all
      GET
    • Fee
      POST
    • Summary by ID
      GET
  • Checkout
    • Layouts
      • Create Layout
      • Find
      • Update settings
      • Update status
      • Find by ID
    • Find info
    • Create Order
    • Find info order
    • Find payment methods by ID
    • Create payment
    • Find payment methods
  • Transfers
    • Create
      POST
    • Update
      POST
    • Find all
      GET
    • Find by ID
      GET
    • summary
      GET
  • Cashout
    • Create
    • Find all
    • Find by ID
  • Customers
    • Find all
    • Find by ID
  • Balance
    • Find
    • Summary
    • Find finalcial reserve
  • Webhook
    • ⚙️ Webhook: Formato de Postback
    • Create
    • Find all
    • Find by ID
    • Update
    • Delete
  1. Transfers

summary

GET
/api/user/transfers/summary
Este endpoint permite consultar um resumo geral das transferências realizadas por um recebedor autenticado.
O resumo pode incluir totais por status (ex: pagas, pendentes, processando), valores acumulados, entre outros indicadores úteis.

✅ Requisitos da Requisição#

Método HTTP: GET
Endpoint: /api/user/transfers/summary
Content-Type: application/json
Autenticação: api_token

🧠 Header da requisição#

CampoTipoObrigatórioDescrição
x-api-keystringSimToken de autenticação API Key
User-AgentAtivoB2B/1.0Sim

Request

Header Params

Responses

🟢200Success
application/json
Body

🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠404Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/user/transfers/summary' \
--header 'x-api-key: {Token}' \
--header 'User-Agent: AtivoB2B/1.0'
Response Response Example
200 - Success
{
  "status": 200,
  "message": "Resumo das transferências encontrado com sucesso",
  "data": {
    "transferPercentege": 0,
    "transferReceived": 0,
    "amountAvailable": 10000,
    "fee": 0,
    "remainingAmount": 10000,
    "pixKey": "00000000000000",
    "payee": {
      "id": "XXXXX",
      "gatewayId": "XXXXX",
      "sellerId": "XXXXX",
      "bankName": "Cooperativa Central de Credito Noroeste Brasileiro",
      "bankCode": "097",
      "agency": "000",
      "account": "00000",
      "digit": "00",
      "status": "ACTIVE",
      "type": "CHECKING",
      "createdAt": "2025-04-16T18:13:41.883Z",
      "updatedAt": "2025-04-16T18:13:41.883Z"
    },
    "userName": "XXXXX"
  },
  "error": null
}
Modified at 2025-07-23 19:02:40
Previous
Find by ID
Next
Create
Built with