We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello there.
Does the node api support split payments?
Thanks.
The text was updated successfully, but these errors were encountered:
Although not officially supported, it should work:
mollieClient.payments.create({ amount: { currency: 'EUR', value: '10.00' }, routing: [ { amount: { currency: 'EUR', value: '2.50' }, destination: { type: 'organization', organizationId: 'me' } }, { amount: { currency: 'EUR', value: '3.50' }, destination: { type: 'organization', organizationId: 'org_23456' } }, { amount: { currency: 'EUR', value: '4.00' }, destination: { type: 'organization', organizationId: 'org_56789' } } ], … });
(Note that ‒ as routing does not exist according to the type definitions ‒ the TypeScript compiler will complain if you're using it.)
routing
Once this feature moves out of closed beta, official support to this client should be added.
Sorry, something went wrong.
Splitting payments has moved out of beta. This can be added to the client.
Pimm
Successfully merging a pull request may close this issue.
Hello there.
Does the node api support split payments?
Thanks.
The text was updated successfully, but these errors were encountered: