@mbanq/core-sdk-js / commands / UnblockAcquiredCardAddition
Function: UnblockAcquiredCardAddition()
UnblockAcquiredCardAddition(
clientId,params):Command<{clientId:number;params: {reason:string; }; }, {clientId:number;data: {reason:string; };id:number;resourceId:number; }>
Defined in: src/commands/rest/acquiredCard.ts:181
Unblocks the addition of acquired cards from external sources for a client
Parameters
clientId
number
The unique identifier of the client
params
reason
string = ...
The reason for unblocking card addition
Returns
Command<{ clientId: number; params: { reason: string; }; }, { clientId: number; data: { reason: string; }; id: number; resourceId: number; }>
Command object that executes the API request and returns the updated unblock status
Example
typescript
const command = UnblockAcquiredCardAddition(12345, {reason: 'Verification completed'});
const result = await client.request(command);