Fetch Usage Limits
This endpoint will return all the transaction usage limits tied to your account
Headers
Name | Description |
---|---|
x-delbank-api-key | Required. API key |
x-delfinance-account-id | Required. The Delfinance bank account number |
Request
- URL
- cURL
GET 'https://apisandbox.delbank.com.br/baas/api/v1/usage-limits'
curl --location 'https://apisandbox.delbank.com.br/baas/api/v1/usage-limits' \
--header 'x-delbank-api-key: {{apiKey}}'
--header 'x-delfinance-account-id: {{accountId}}' \
Response
On a succesful response here's what you'll receive:
[
{
"serviceType": {
"name": "DEBIT",
"description": "Limite Geral (Débito)"
},
"limits": [
{
"limitType": {
"name": "MONTHLY_TOTAL",
"description": "Limite mensal total"
},
"maximunAmount": 20909090909090.70,
"definedAmount": 20909090909090.70
}
]
},
{
"serviceType": {
"name": "PAYMENT",
"description": "Limite de pagamentos (boletos e tributos)"
},
"limits": [
{
"limitType": {
"name": "DAYTIME_TOTAL",
"description": "Limite diurno total"
},
"maximunAmount": 696969696969.69,
"definedAmount": 696969696969.69
},
{
"limitType": {
"name": "DAYTIME_TRANSACTIONAL",
"description": "Limite diurno por transação"
},
"maximunAmount": 696969696969.69,
"definedAmount": 696969696969.69
}
]
},
{
"serviceType": {
"name": "TRANSFER_INTERNAL",
"description": "Limite de transferência interna"
},
"limits": [
{
"limitType": {
"name": "DAYTIME_TOTAL",
"description": "Limite diurno total"
},
"maximunAmount": 696969696969.69,
"definedAmount": 696969696969.69
},
{
"limitType": {
"name": "DAYTIME_TRANSACTIONAL",
"description": "Limite diurno por transação"
},
"maximunAmount": 696969696969.69,
"definedAmount": 696969696969.69
}
]
},
{
"serviceType": {
"name": "TRANSFER_EXTERNAL",
"description": "Limite de transferências TED para outras contas"
},
"limits": [
{
"limitType": {
"name": "DAYTIME_TOTAL",
"description": "Limite diurno total"
},
"maximunAmount": 696969696969.69,
"definedAmount": 696969696969.69
},
{
"limitType": {
"name": "DAYTIME_TRANSACTIONAL",
"description": "Limite diurno por transação"
},
"maximunAmount": 696969696969.69,
"definedAmount": 696969696969.69
}
]
},
{
"serviceType": {
"name": "PIX",
"description": "Limite de transferências PIX para outras contas"
},
"limits": [
{
"limitType": {
"name": "DAYTIME_TOTAL",
"description": "Limite diurno total"
},
"maximunAmount": 696969696969.69,
"definedAmount": 696969696969.69
},
{
"limitType": {
"name": "NIGHTTIME_TOTAL",
"description": "Limite noturno total"
},
"maximunAmount": 1000.00,
"definedAmount": 1000.00
},
{
"limitType": {
"name": "DAYTIME_TRANSACTIONAL",
"description": "Limite diurno por transação"
},
"maximunAmount": 696969696969.69,
"definedAmount": 696969696969.69
},
{
"limitType": {
"name": "NIGHTTIME_TRANSACTION",
"description": "Limite noturno por transação"
},
"maximunAmount": 1000.00,
"definedAmount": 999.00,
"raiseRequest": {
"status": "PENDING_ANALYSIS",
"amount": 2000.00
}
}
]
}
]