For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
StatusDashboard
  • Getting Started
    • Introduction
    • Authentication
    • Rate Limits
    • Error Handling
  • Guides
    • Cash-In (Receiving Payments)
    • Cash-Out (Sending Payments)
    • PIX Keys Management
    • Webhooks Integration
    • MED (Special Returns)
  • API Reference
      • GETGet Limits
      • GETList Pending Limit Requests
      • POSTRequest Limit Change
      • GETGet Limit Request by ID
LogoLogo
StatusDashboard
API ReferencePix Limits

List Pending Limit Requests

GET
https://api.brzip.com.br/api/v1/pix/limits/requests
GET
/api/v1/pix/limits/requests
$curl https://api.brzip.com.br/api/v1/pix/limits/requests \
> -H "Content-Type: application/json"
200Retrieved
1{
2 "success": true,
3 "data": [
4 {
5 "id": "a3f1c2d4-9b7e-4f3a-8d2e-1c9b7f6a4e5d",
6 "account_id": "d4e5f6a7-b8c9-4d0e-9f1a-2b3c4d5e6f7a",
7 "type": "pix_out",
8 "period": "monthly",
9 "current_amount": "5000.00",
10 "requested_amount": "10000.00",
11 "reason": "Increase limit for upcoming business transactions",
12 "status": "pending",
13 "expires_at": "2024-07-15T23:59:59Z",
14 "created_at": "2024-06-15T10:30:00Z",
15 "updated_at": "2024-06-16T14:45:00Z"
16 }
17 ]
18}

Lists all pending limit change requests for the authenticated account. Returns only requests with pending status.

Scope: pix:limits:read

Was this page helpful?
Previous

Request Limit Change

Next
Built with

Response

List of pending limit requests
successboolean
datalist of objects