---
title: "Capture Payment"
method: POST
path: "/v1/payment/orders/{order_id}/capture"
tags: ["Payment Services"]
---

# Capture Payment

`POST /v1/payment/orders/{order_id}/capture`

Service responsible for capturing a card payment

## Path parameters

- `order_id` string, required

## Headers

- `Content-Type` string, required
- `Accept` string, required

## Response `200`

Capture response

- CaptureResponse
  - `store` object
    - `code` string — Store identifier.
    - `category` string — Four-digit ISO 18245 merchant category code.
  - `transaction` object, required
    - `reference_id` string, required — Transaction identifier, generated by client. (Maximum of 50 characters - Unique per transaction).
    - `business_id` string — Business ID. The ID of the transaction related with this payment.
    - `account` integer — Client account number.
    - `amount` object
      - `currency_code` string, required — Currency code (ISO 4217)
      - `value` number, required — Total amount
    - `provider_reference` object — Provider reference data
      - `order_id` string — Provider order identifier, used to identify the order in the acquirer
      - `payment_id` string — Provider payment identifier, used to identify the payment in the acquirer. (Mandatory data when the payment is Collected)
  - `order_id` string, required — Order ID returned by create payment service
  - `status` object, required
    - `type` string, required — Payment status.
    - `date` string, date-time, required — Status change date (ISO 8601 date format)
    - `error` StatusError — Error details. Present when the payment failed and error information is available.
      - `code` string — Error code.
      - `message` string — Error message.
  - `country_code` string — Transaction country code.

## Other responses

- `404` — Not Found
- `500` — Internal Server Error

---

[API](https://skmtc.dev/koin/apis/payments-api.md) · [All operations](https://skmtc.dev/koin/apis/payments-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/koin/payments-api/revisions/6f2c01e43fe2/schema)
