Update Counterparty Limit

Update Counterparty Limit

put

This endpoint updates the limit for a specific counterparty associated with a bank account.

scope: counterparties.write

Path parameters
counterparty_idstring · uuidRequiredExample: 5d2811d0-c016-4bc9-bc53-848b1d0bc0c6
Header parameters
AcceptstringOptionalExample: application/json
Content-TypestringOptionalExample: application/json
X-API-KeystringRequiredExample: {{API_KEY}}
Body
bank_account_idstringRequired
document_typestringRequired
maximum_amountintegerRequired
Responses
200

Success

application/json
put
PUT /banking/v1/counterparties/{counterparty_id} HTTP/1.1
Host: api.aurixpay.ws
X-API-Key: text
Content-Type: application/json
Accept: */*
Content-Length: 86

{
  "bank_account_id": "{{bank_account_id}}",
  "document_type": "cpf",
  "maximum_amount": 50000
}
{
  "data": {
    "id": "5d2811d0-c016-4bc9-bc53-848b1d0bc0c6",
    "name": "John Doe",
    "tax_number": "10060958456",
    "created_at": "2025-06-25T16:55:12.000000Z",
    "updated_at": "2025-07-01T09:30:30.000000Z"
  }
}