Debit Card Activation
You can activate a virtual card by using the modifyStatus
function to modify its status.
If you need to disable a card, see options in the src/baas/galileo/enums/modify-status.enum.ts file.
Activate Physical Card
Endpoint: BASE_URL/baas/debit-cards/:id/activate
This table explains the parameters that are specific to the Activate Card endpoint:

@Put('debit-cards/:id/activate')
@UseGuards(CustomerGuard)
public async activateDebitCard(
@GetIntegration(IntegrationServices.GALILEO) integration: Integration,
@Param('id') cardId: string,
@Body() activateCardDto: ActivatePhysicalCardDto,
) {
return this.galileoService.activateDebitCard(
integration,
cardId,
activateCardDto,
);
}
Last updated
Was this helpful?