get
https://api.banking.netevia.dev/api/spendRules/v2/atmDailyLimit
Get Daily ATM Withdrawal Limit
This endpoint returns the current daily ATM withdrawal limit applied to a given payment card. The limit is expressed as an integer value in cents. Partners can use this endpoint to display or audit spend rule configurations for cards issued to their customers.
Endpoint
GET /api/spendRules/v2/atmDailyLimit
Authentication
Bearer token required. Obtain via:
POST https://api.banking.netevia.dev/api/auth/v2
Include in header: Authorization: Bearer {token}
Token lifetime: 10 minutes. Refresh via POST /api/auth/refresh.
When to use
Use this endpoint when you need to check the daily ATM withdrawal limit currently set on a payment card — for example, to display the limit in a cardholder-facing dashboard, to verify a limit before updating it, or to audit spend controls across a portfolio of issued cards.
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| paymentCardId | string | Yes | The unique identifier of the payment card whose daily ATM withdrawal limit is being retrieved. |
Response
200 OK
| Field | Type | Description |
|---|---|---|
| value | integer (int64) | The daily ATM withdrawal limit for the specified card, expressed in cents. |
{
"value": 50000
}Error Codes
| Code | When it happens |
|---|---|
| 400 | paymentCardId is missing, malformed, or refers to an inactive/invalid card. |
| 401 | Token missing, expired, or invalid. |
| 403 | Insufficient permissions to view spend rules for the specified card. |
| 404 | No payment card found for the provided paymentCardId. |
| 500 | Internal server error. |
Common Mistakes
- Omitting the
paymentCardIdquery parameter — the request will fail without it. - Passing a card ID that belongs to a different partner — the API will return 403 or 404.
- Interpreting the returned
valueas dollars instead of cents (e.g.,50000means $500.00, not $50,000.00).
Related Endpoints
PUT /api/spendRules/v2/atmDailyLimit— Update the daily ATM withdrawal limit for a payment card.GET /api/spendRules/v2/purchaseDailyLimit— Retrieve the daily purchase limit for a payment card.GET /api/spendRules/v2— Retrieve all spend rules configured for a payment card.
Example
curl -X GET "https://api.banking.netevia.dev/api/spendRules/v2/atmDailyLimit?paymentCardId=card_abc123xyz" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json"