- Auth
- Apps Oauth
- Batch Jobs
- Currencies
- Customers
- Customer Groups
- Discounts
- Draft Orders
- Gift Cards
- Inventory Items
- Invites
- Notes
- Notifications
- Orders
- Create a Reservation
- Cancel Claim's Fulfillment
- Ship a Claim's Fulfillment
- Cancel Swap's Fulfilmment
- Get Order Reservations
- Add a Shipping Method
- Create a Refund
- Get an Order
- Update an Order
- Create a Fulfillment
- Cancel a Swap
- List Orders
- Create a Swap
- Complete an Order
- Create a Swap Fulfillment
- Cancel a Claim
- Process a Swap Payment
- Ship a Fulfillment
- Capture an Order's Payments
- Archive Order
- Update a Claim
- Request a Return
- Create a Claim Fulfillment
- Ship a Swap's Fulfillment
- Cancel a Fulfilmment
- Create a Claim
- Cancel an Order
- Order Edits
- Payments
- Payment Collections
- Product Collections
- Product Tags
- Product Types
- Product Variants
- Price Lists
- Products
- Product Categories
- Publishable Api Keys
- Reservations
- Regions
- Return Reasons
- Returns
- Sales Channels
- Shipping Options
- Shipping Profiles
- Stock Locations
- Store
- Swaps
- Uploads
- Tax Rates
- Users
Capture a Payment
POST
/admin/payments/{id}/capture
Payments
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.medusa-commerce.com/admin/payments//capture'
Response Response Example
200 - Example 1
{
"payment": {
"id": "pay_01G2SJNT6DEEWDFNAJ4XWDTHKE",
"swap_id": null,
"swap": {},
"cart_id": "string",
"cart": {},
"order_id": "order_01G8TJSYT9M6AVS5N4EMNFS1EK",
"order": {},
"amount": 100,
"amount_refunded": 0,
"provider_id": "manual",
"captured_at": "2019-08-24T14:15:22Z",
"canceled_at": "2019-08-24T14:15:22Z",
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"currency_code": "usd",
"data": {},
"idempotency_key": "string",
"metadata": {
"car": "white"
},
"currency": {
"symbol": "$",
"symbol_native": "$",
"name": "US Dollar",
"includes_tax": false,
"code": "usd"
}
}
}
Request
Path Params
id
string
required
Responses
🟢200OK
application/json
Body
payment
object (Payment)
required
id
string
required
Example:
pay_01G2SJNT6DEEWDFNAJ4XWDTHKE
swap_id
string | null
required
Example:
null
swap
object | null
optional
cart_id
string | null
required
cart
object | null
optional
order_id
string | null
required
Example:
order_01G8TJSYT9M6AVS5N4EMNFS1EK
order
object | null
optional
amount
integer
required
Example:
100
amount_refunded
integer
required
Default:
0
Example:
0
provider_id
string
required
Example:
manual
captured_at
string <date-time> | null
required
canceled_at
string <date-time> | null
required
created_at
string <date-time>
required
updated_at
string <date-time>
required
currency_code
string
required
Example:
usd
data
object
required
Example:
{}
idempotency_key
string | null
required
metadata
object | null
required
Example:
{"car":"white"}
currency
object (Currency)
optional
🟠400Client Error or Multiple Errors
🟠401User is not authorized. Must log in first
🟠404Not Found Error
🟠409Invalid State Error
🟠422Invalid Request Error
🔴500Server Error
Modified at 2023-10-10 11:56:36