Skip to content

@mbanq/core-sdk-js v0.50.0


@mbanq/core-sdk-js / commands / GetCardLimits

Function: GetCardLimits()

GetCardLimits(cardId): Command<{ cardId: number; }, { id: number; mergedVelocityRules: object[]; velocityRules: object[]; }>

Defined in: src/commands/rest/card.ts:903

Get card limits and velocity rules

Retrieves card limit details including associated velocity and merged velocity rules.

Parameters

cardId

number

Returns

Command<{ cardId: number; }, { id: number; mergedVelocityRules: object[]; velocityRules: object[]; }>

Command object that executes the API request and returns limit details

Example

typescript
const command = GetCardLimits({
  cardId: 1224,
  controls: 'daily'
});
const result = await client.request(command);

Released under the MIT License.