Get the "Daily ATM Withdrawal Limit"

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

ParameterTypeRequiredDescription
paymentCardIdstringYesThe unique identifier of the payment card whose daily ATM withdrawal limit is being retrieved.

Response

200 OK

FieldTypeDescription
valueinteger (int64)The daily ATM withdrawal limit for the specified card, expressed in cents.
{
  "value": 50000
}

Error Codes

CodeWhen it happens
400paymentCardId is missing, malformed, or refers to an inactive/invalid card.
401Token missing, expired, or invalid.
403Insufficient permissions to view spend rules for the specified card.
404No payment card found for the provided paymentCardId.
500Internal server error.

Common Mistakes

  • Omitting the paymentCardId query 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 value as dollars instead of cents (e.g., 50000 means $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"
Query Params
string
Headers
string
enum
Defaults to application/json

Generated from available response content types

Allowed:
Response

Language
Credentials
Bearer
JWT
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
text/plain
application/json
text/json