getTransactions

abstract suspend fun getTransactions(customerId: String, cursor: String? = null): ApiResult<TransactionResult>

Retrieves a list of Transactions for the specified customer. Also returns a string cursor if there is more than one page of results. Each page contains at most 50 results unless a lower limit is specified.

Return

The TransactionResult containing any transactions and the next cursor.

Parameters

customerId

Unique identifier for the customer.

cursor

A cursor returned from a previous getTransactions request to fetch the next result page.