listCards

abstract fun listCards(sessionToken: String, walletUuid: String, limit: Int? = null, offset: Int? = null, clientCallback: ListCardsSdkCallback)

Headless call to get a list of issued cards associated to a wallet.

Parameters

sessionToken

Session token

walletUuid

Wallet unique identifier

limit

The number of items per page

offset

Start after offset amount of records

clientCallback

Client callback for success and error responses from the Alviere Card SDK

See also


abstract suspend fun listCards(sessionToken: String, walletUuid: String, limit: Int? = null, offset: Int? = null): Response<List<IssuedCardDetailsModel>>

Headless call to get a list of issued cards associated to a wallet.

Return

Response<List<IssuedCardDetailsModel>>

Parameters

sessionToken

Session token

walletUuid

Wallet user unique identifier

limit

The number of items per page

offset

Start after offset amount of records

See also