Skip to content

@mbanq/core-sdk-js v0.50.0


@mbanq/core-sdk-js / commands / GetCreditAccountBilledStatements

Function: GetCreditAccountBilledStatements()

GetCreditAccountBilledStatements(creditAccountId, data?): Command<{ creditAccountId: number; data?: { limit?: number; offset?: number; }; }, { pageItems: object[]; totalFilteredRecords: number; }>

Defined in: src/commands/rest/creditAccount.ts:247

Get billed statements for a credit account

Retrieves all billing statements generated for a specific credit account. Billing statements show the account's activity over a billing cycle including transactions, payments, fees, and amounts due.

Parameters

creditAccountId

number

The unique identifier of the credit account

data?

limit?

number = ...

offset?

number = ...

Returns

Command<{ creditAccountId: number; data?: { limit?: number; offset?: number; }; }, { pageItems: object[]; totalFilteredRecords: number; }>

Command object that executes the API request and returns billed statements

Example

typescript
const command = GetCreditAccountBilledStatements(388);
const statements = await client.request(command);

Released under the MIT License.