Learning Resources

createPaymentCollections - Payment Module Reference

This documentation provides a reference to the createPaymentCollections method. This belongs to the Payment Module.

createPaymentCollections(data, sharedContext?): Promise<PaymentCollectionDTO[]>#

This method creates payment collections.

Example#

Code
1const paymentCollections = await paymentModuleService.createPaymentCollections([2  {3    region_id: "reg_123",4    currency_code: "usd",5    amount: 3000,6  },7  {8    region_id: "reg_321",9    currency_code: "eur",10    amount: 2000,11  },12])

Parameters#

The payment collections to create.
sharedContextContextOptional
A context used to share resources, such as transaction manager, between the application and the module.

Returns#

PromisePromise<PaymentCollectionDTO[]>
The created payment collections.

createPaymentCollections(data, sharedContext?): Promise<PaymentCollectionDTO>#

This method creates a payment collection.

Example#

Code
1const paymentCollection =2  await paymentModuleService.createPaymentCollections({3    region_id: "reg_123",4    currency_code: "usd",5    amount: 3000,6  })

Parameters#

The payment collection to create.
sharedContextContextOptional
A context used to share resources, such as transaction manager, between the application and the module.

Returns#

PromisePromise<PaymentCollectionDTO>
The created payment collection.
Was this page helpful?