Debit Card Activation

You can activate a virtual card by using the modifyStatus function to modify its status.

Card Statuses

Activate Physical Card

Endpoint: BASE_URL/baas/debit-cards/:id/activate

This table explains the parameters that are specific to the Activate Card endpoint:

Galileo - Activate Card parameters
@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?