AdminPaymentsResource
This class is used to send requests to Admin Payment API Routes. All its method
are available in the JS Client under the medusa.admin.payments
property.
All methods in this class require user authentication.
A payment can be related to an order, swap, return, or more. It can be captured or refunded.
Methods
capturePayment
Capture a payment.
Example
Parameters
id
stringRequiredThe payment's ID.
customHeaders
Record<string, any>RequiredCustom headers to attach to the request.
Default: {}
Returns
ResponsePromise
ResponsePromise<AdminPaymentRes>RequiredResolves to the payment's details.
ResponsePromise
ResponsePromise<AdminPaymentRes>RequiredrefundPayment
Refund a payment. The payment must be captured first.
Example
import Medusa from "@medusajs/medusa-js"
const medusa = new Medusa({ baseUrl: MEDUSA_BACKEND_URL, maxRetries: 3 })
// must be previously logged in or use api token
medusa.admin.payments.refundPayment(paymentId, {
amount: 1000,
reason: "return",
note: "Do not like it",
})
.then(({ payment }) => {
console.log(payment.id);
})
Parameters
id
stringRequiredThe payment's ID.
The refund to be created.
customHeaders
Record<string, any>RequiredCustom headers to attach to the request.
Default: {}
Returns
ResponsePromise
ResponsePromise<AdminRefundRes>RequiredResolves to the refund's details.
ResponsePromise
ResponsePromise<AdminRefundRes>Requiredretrieve
Retrieve a payment's details.
Example
Parameters
id
stringRequiredThe payment's ID.
query
GetPaymentsParamsConfigurations to apply on the retrieved payment.
query
GetPaymentsParamscustomHeaders
Record<string, any>RequiredCustom headers to attach to the request.
Default: {}
Returns
ResponsePromise
ResponsePromise<AdminPaymentRes>RequiredResolves to the payment's details.
ResponsePromise
ResponsePromise<AdminPaymentRes>RequiredWas this section helpful?