You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be possible to get filters on creation / updates into the API for the settlement transactions? Currently we are using a settlement to rollup a week of order information but if we get a year in we are going to have a lot of settlements. Does the API already have undocumented params we can use per the guide?
export interface LedgerAccountSettlementListParams extends PageParams {
/**
* If you have specific IDs to retrieve in bulk, you can pass them as query
* parameters delimited with `id[]=`, for example `?id[]=123&id[]=abc`.
*/
id?: Array<string>;
ledger_transaction_id?: string;
/**
* For example, if you want to query for records with metadata key `Type` and value
* `Loan`, the query would be `metadata%5BType%5D=Loan`. This encodes the query
* parameters.
*/
metadata?: Record<string, string>;
settled_ledger_account_id?: string;
settlement_entry_direction?: string;
}
The text was updated successfully, but these errors were encountered:
Hey @jcarlsonautomatiq - I'm the PM for Ledgers. We're looking into if we can slot this change into the roadmap for you, we'll keep you posted. Git comments can sometimes slip through the cracks but for future requests if you ping [email protected] it'll get back to me!
Would it be possible to get filters on creation / updates into the API for the settlement transactions? Currently we are using a settlement to rollup a week of order information but if we get a year in we are going to have a lot of settlements. Does the API already have undocumented params we can use per the guide?
Under:
https://docs.moderntreasury.com/platform/reference/list-ledger-account-settlements
gt
(>),gte
(>=),lt
(<),lte
(<=), oreq
(=) to filter by the*/
updated_at?: Record<string, string>;
created_at?:Record<string, string>
The text was updated successfully, but these errors were encountered: