everyaction.services.FinancialBatches

class everyaction.services.FinancialBatches(ea: EAClient)

Represents the Financial Batches service.

Methods

create(**kwargs)

See POST /financialBatches.

get(batch_id, /)

See GET /financialBatches/{financialBatchId}.

list(**kwargs)

See GET /financialBatches.

create(**kwargs: EAValue) FinancialBatch

See POST /financialBatches.

Parameters

kwargs – The applicable query arguments and JSON data for the request. A FinancialBatch is appropriate to unpack here.

Returns

The created FinancialBatch object.

Keyword Arguments
get(batch_id: int, /) FinancialBatch

See GET /financialBatches/{financialBatchId}.

Parameters

batch_id – The financialBatchId path parameter.

Returns

The resulting FinancialBatch object.

list(**kwargs: EAValue) List[FinancialBatch]

See GET /financialBatches.

Parameters

kwargs – The applicable query arguments and JSON data for the request.

Returns

List of the resulting FinancialBatch objects.

Keyword Arguments