Get the "Daily ATM Withdrawal Limit"

Get Daily ATM Withdrawal Limit

Deprecated: This endpoint is deprecated. Consult the related spend rules endpoints for current ATM limit management functionality.

The GET /api/spendRules/atmDailyLimit endpoint retrieves the current daily ATM withdrawal limit configured on a specific payment card. It returns the maximum dollar amount that can be withdrawn from ATMs within a 24-hour period. This information helps partners and their customers monitor cash access boundaries and plan daily transactions accordingly.

Endpoint

GET /api/spendRules/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 a customer or authorized user needs to check the current daily ATM withdrawal limit on their payment card before attempting a cash withdrawal. It is useful for financial planning workflows where the application needs to display spending limits to the cardholder. This endpoint is also relevant when building account management dashboards that surface card-level spend rule information.

Query Parameters

ParameterTypeRequiredDescription
paymentCardIdstringNoThe unique identifier of the payment card whose daily ATM withdrawal limit is being queried.

Response

200 OK

Returns a single integer (int64) representing the daily ATM withdrawal limit in cents or the configured currency unit for the card.

FieldTypeDescription
(root value)integer (int64)The current daily ATM withdrawal limit amount on the specified payment card.
50000

Error Codes

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

Common Mistakes

  • Omitting paymentCardId may return a default or unexpected limit value rather than an error; always supply the card ID to retrieve a card-specific limit.
  • This endpoint is deprecated — integrate against the current spend rules endpoints for new development to avoid breakage when this endpoint is removed.
  • The returned integer represents the limit amount in the smallest currency unit (e.g., cents); divide by 100 to display as a dollar amount.

Related Endpoints

  • GET /api/spendRules — Retrieve all spend rules configured on a payment card
  • POST /api/spendRules/atmDailyLimit — Set or update the daily ATM withdrawal limit on a payment card
  • GET /api/spendRules/dailySpendLimit — Retrieve the overall daily spend limit for a payment card

Example

curl -X GET "https://api.banking.netevia.dev/api/spendRules/atmDailyLimit?paymentCardId=YOUR_CARD_ID" \
  -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!