Bynet
  1. Balance
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
    • Update
    • Find all
    • Find by ID
    • summary
  • Cashout
    • Create
    • Find all
    • Find by ID
  • Customers
    • Find all
    • Find by ID
  • Balance
    • Find
      GET
    • Summary
      GET
    • Find finalcial reserve
      GET
  • Webhook
    • āš™ļø Webhook: Formato de Postback
    • Create
    • Find all
    • Find by ID
    • Update
    • Delete
  1. Balance

Find finalcial reserve

GET
/api/user/balance-history/financial-reserve
Este endpoint permite consultar as informaƧƵes da reserva financeira do usuƔrio autenticado. Ele retorna dados relacionados a valores reservados, disponƭveis e totais vinculados Ơ conta do usuƔrio.

āœ… Requisitos da Requisição#

MƩtodo HTTP: GET
Endpoint: /api/user/balance-history/financial-reserve
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/balance-history/financial-reserve' \
--header 'x-api-key: {Token}' \
--header 'User-Agent: AtivoB2B/1.0'
Response Response Example
200 - Success
{
    "message": "Liberação de Reserva Financeira encontrado com sucesso.",
    "data": {
        "data": [
            {
                "inflows": 0,
                "outflows": 0,
                "total": 0,
                "status": "RESERVED",
                "releaseDate": "2025-07-14"
            },
            {
                "inflows": 0,
                "outflows": 0,
                "total": 0,
                "status": "RESERVED",
                "releaseDate": "2025-07-12"
            },
            {
                "inflows": 0,
                "outflows": 0,
                "total": 0,
                "status": "RESERVED",
                "releaseDate": "2025-07-09"
            },
            {
                "inflows": 0,
                "outflows": 0,
                "total": 0,
                "status": "RESERVED",
                "releaseDate": "2025-07-08"
            },
            {
                "inflows": 200,
                "outflows": 0,
                "total": 200,
                "status": "RESERVED",
                "releaseDate": "2025-07-07"
            },
            {
                "inflows": 800,
                "outflows": 0,
                "total": 800,
                "status": "RESERVED",
                "releaseDate": "2025-07-06"
            },
            {
                "inflows": 600,
                "outflows": 0,
                "total": 600,
                "status": "RESERVED",
                "releaseDate": "2025-07-01"
            },
            {
                "inflows": 800,
                "outflows": 0,
                "total": 800,
                "status": "RESERVED",
                "releaseDate": "2025-06-30"
            },
            {
                "inflows": 200,
                "outflows": 0,
                "total": 200,
                "status": "RESERVED",
                "releaseDate": "2025-06-29"
            }
        ],
        "pages": 1,
        "page": 1,
        "limit": 10,
        "total": 9
    },
    "status": 200,
    "error": null
}
Modified atĀ 2025-07-23 19:02:40
Previous
Summary
Next
āš™ļø Webhook: Formato de Postback
Built with