Accounts
@Get('customer-accounts')
@UseGuards(CustomerGuard)
public async getCustomerAccounts(
@GetIntegration(IntegrationServices.GALILEO) integration: Integration,
@Query() queryParams: GetAccountsDto,
) {
return this.galileoService.getCustomerAccounts(integration, queryParams);
}Last updated