Enkash Developer Portal
Home
Home
Login
  1. Home
  • Back to home
  • Prepaid Card APIs
  • Encryption & Decryption Guide
  • Auth Token
    POST
  • Create Card Account
    POST
  • Create Gift Card
    POST
  • Create Prepaid Card
    POST
  • Set Card PIN
    POST
  • Load Card Balance
    POST
  • Get Card Account Details
    POST
  • Generate Card OTP
    POST
  • View Card Details
    POST
  • Card Usage Controls
    POST
  • Get Card Usage Limits
    POST
  • Request Card Replacement
    POST
  • Block Card
    POST
  • Order Physical Card
    POST
  • Get Card Details
    POST
  • Get Transaction Details
    POST
  • Get All Transaction details
    POST
  1. Home

Get Card Usage Limits

POST
/api/v0/partner/enKashCard/velocity/rule/get
📌
This API retrieves the current limits and checks configured for a specific card. These define transaction thresholds and restrictions, such as maximum spending or transaction count within a daily, weekly, or monthly period. Use this endpoint to review, display, or audit the spending policies applied to the card

Request

Header Params
authorization
string 
required
Provide your bearer token in the Authorization header when making requests to protected resources.
Example:
Bearer 2f68dbbf-519d-4f01-9636-e2421b68f379
partnerId
string 
required
PartnerID shared during sign-up
Example:
CRXXXXXXX
Body Params application/json
companyId
string 
required
Unique EnKash Company ID. This is the ID assigned to a company onboarded on the EnKash platform.
cardAccountId
string 
required
Unique EnKash Account ID. This is the ID assigned to the account created under the company.
enKashCardId
string 
required
Unique identifier for enKash card.
Example
{
    "companyId": "string",
    "cardAccountId": "string",
    "enKashCardId": "string"
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/v0/partner/enKashCard/velocity/rule/get' \
--header 'authorization: Bearer 2f68dbbf-519d-4f01-9636-e2421b68f379' \
--header 'partnerId: CRXXXXXXX' \
--header 'Content-Type: application/json' \
--data-raw '{
    "companyId": "string",
    "cardAccountId": "string",
    "enKashCardId": "string"
}'

Responses

🟢200OK
application/json
Body
code
integer 
required
message
string 
required
payload
object 
required
createdBy
string 
required
createdOn
string 
required
modifiedOn
string 
required
lastModifiedBy
string 
required
posAllowed
boolean 
required
posAllowedAdmin
boolean 
required
atmAllowed
boolean 
required
atmAllowedAdmin
boolean 
required
internationalAllowed
boolean 
required
internationalAllowedAdmin
boolean 
required
onlineAllowed
boolean 
required
onlineAllowedAdmin
boolean 
required
useAccountFunds
boolean 
required
internationalAtmAllowed
boolean 
required
contactlessAllowedAdmin
boolean 
required
contactlessAllowed
boolean 
required
platformTxnAllowed
boolean 
required
autoLoading
boolean 
required
ecomChannelLimit
integer 
required
atmChannelLimit
integer 
required
posChannelLimit
integer 
required
overrideAutoLoading
boolean 
required
excludeInBulkFunding
boolean 
required
Example
{
    "code": 0,
    "message": "Success",
    "payload": {
        "createdBy": "anay.nagar+cp@enkash.com",
        "createdOn": "Jan 23, 2025 4:38:36 PM",
        "modifiedOn": "Jan 23, 2025 4:38:36 PM",
        "lastModifiedBy": "anay.nagar+cp@enkash.com",
        "posAllowed": true,
        "posAllowedAdmin": true,
        "atmAllowed": false,
        "atmAllowedAdmin": true,
        "internationalAllowed": false,
        "internationalAllowedAdmin": false,
        "onlineAllowed": false,
        "onlineAllowedAdmin": true,
        "useAccountFunds": false,
        "internationalAtmAllowed": false,
        "contactlessAllowedAdmin": false,
        "contactlessAllowed": false,
        "platformTxnAllowed": false,
        "autoLoading": true,
        "ecomChannelLimit": 10000.00,
        "atmChannelLimit": 0.00,
        "posChannelLimit": 10000.00,
        "overrideAutoLoading": false,
        "excludeInBulkFunding": false
    }
}
Modified at 2025-05-26 17:23:02
Previous
Card Usage Controls
Next
Request Card Replacement
Built with