sdk_python icon indicating copy to clipboard operation
sdk_python copied to clipboard

The list method rejects pagination arguments (count/newer_id/older_id)

Open hunter-nl opened this issue 2 months ago • 1 comments

I’m integrating the official Python SDK to list and export customer statements (MT940/PDF) across both personal and company monetary accounts, and I’ve run into issues that seem to be SDK-specific:

The list method rejects pagination arguments (count/newer_id/older_id) Expected ExportStatement listing supports pagination args per the REST API via query params (count, newer_id, older_id). Observed ExportStatementApiObject.list(...) raises: "got an unexpected keyword argument 'count'" when passing count/newer_id/older_id.

  • Representative log: [debug] SDK list signature mismatch: ExportStatementApiObject.list() got an unexpected keyword argument 'count'.

Request Please add count/newer_id/older_id to the Python SDK method signature and pass them through to the underlying endpoint.

hunter-nl avatar Oct 08 '25 13:10 hunter-nl