24 lines
528 B
YAML
24 lines
528 B
YAML
post:
|
|
operationId: PostOrdersOrderCapture
|
|
summary: Capture an Order
|
|
description: Captures all the Payments associated with an Order.
|
|
x-authenticated: true
|
|
parameters:
|
|
- in: path
|
|
name: id
|
|
required: true
|
|
description: The ID of the Order.
|
|
schema:
|
|
type: string
|
|
tags:
|
|
- Order
|
|
responses:
|
|
'200':
|
|
description: OK
|
|
content:
|
|
application/json:
|
|
schema:
|
|
properties:
|
|
order:
|
|
$ref: ../components/schemas/order.yaml
|