When getting all payments, it's says I can filter based on orderType.databaseId, how do I get that information?
I have the orderType id, but that doesn't work.
When getting all payments, it's says I can filter based on orderType.databaseId, how do I get that information?
I have the orderType id, but that doesn't work.
Looks like a mistake, databaseId is an internal integer that isn't normally exposed via the public API and won't be usable.
Perhaps instead you can query orders, filter by order type and expand payments, for example:
v3/merchants/orders?filter=orderType=<OrderType_UUID>&expand=payments
3 People are following this question.