@bebapps/rapyd-sdk
Version:
An un-official [Rapyd](https://rapyd.net) SDK for Node.js.
35 lines (34 loc) • 841 B
text/typescript
export interface ListIssuedCardTransactionsRequest {
/**
* ID of the issued card. String starting with **card_**.
*/
card: `card_${string}`;
/**
* Timestamp of the first transaction or later, in [*Unix time*](ref:glossary).
*/
start_date?: number;
/**
* Timestamp of the last transaction or later, in [*Unix time*](ref:glossary).
*/
end_date?: number;
/**
* Transactions greater than a specific amount.
*/
min_amount?: number;
/**
* Transactions smaller than a specific amount.
*/
max_amount?: number;
/**
* Filters the results to return only transactions that have this string as part of the name or location.
*/
merchant_name_search?: string;
/**
* Number of results per page.
*/
page_size?: number;
/**
* Page number to retrieve.
*/
page_number?: string;
};