Represents the parameters for the cards.

interface CardParameters {
    cardType?: CardType;
    include?: CardIncludesParam[];
    limit?: number;
    offset?: number;
    status?: CardStatus[];
}

Properties

cardType?: CardType

List of cards by card type.

include?: CardIncludesParam[]

Include listed properties in the response.

limit?: number

This is the total number of records to return.

offset?: number

This is the starting position, where 0 is the first record.

status?: CardStatus[]

List of card statuses which will be returned. By default, all statuses will be returned.