POST
/
v3.0
/
{ClientId}
/
payins
/
intents
/
{IntentId}
/
captures
// No request body
{
    "Id": "int_0197ef1e-e53d-7e81-b648-b27b13a98ba9",
    "Amount": 20000,
    "AvailableAmountToSplit": 20000,
    "Currency": "EUR",
    "PlatformFeesAmount": 0,
    "Status": "CAPTURED",
    "NextActions": "REFUNDED, DISPUTED",
    "ExternalData": {
        "ExternalProcessingDate": 1752057968,
        "ExternalProviderReference": "auth-stripe-d400210c-a4d9-4ce2-bfb1-9cf21cde5a80",
        "ExternalMerchantReference": "order-8db7e398-f460-43c8-91ef-19d76d54dbf6",
        "ExternalProviderName": "Stripe",
        "ExternalProviderPaymentMethod": "MASTERCARD"
    },
    "Buyer": {
        "Id": "user_m_01JZB09HSDZRVN60QH1006TK6E"
    },
    "Capture": {
        "Id": "int_capture_0197ef1e-fc77-7e14-97f8-96a38847e375"
    },
    "LineItems": [
        {
            "Id": "int_li_0197ef1e-e53f-7864-aa28-eaef2cc7170f",
            "TotalLineItemAmount": 10000,
            "CapturedAmount": 10000,
            "RefundedAmount": 0,
            "DisputedAmount": 0,
            "SplitAmount": 0
        },
        {
            "Id": "int_li_0197ef1e-e53f-7864-aa28-eaef2cc71710",
            "TotalLineItemAmount": 10000,
            "CapturedAmount": 10000,
            "RefundedAmount": 0,
            "DisputedAmount": 0,
            "SplitAmount": 0
        }
    ],
    "CreationDate": 1752063468,
    "ExecutionDate": 1752063474
}

You can use this endpoint in three capture scenarios requiring three difference request bodies.

Path parameters

IntentId
string
required

The unique identifier of the Intent.

The full Amount of the intent is captured (all line items) and the ExternalData is the same as the Intent (same provider references and date).

Body parameters

No request body for full simultaneous capture.

Responses

{
    "Id": "int_0197ef1e-e53d-7e81-b648-b27b13a98ba9",
    "Amount": 20000,
    "AvailableAmountToSplit": 20000,
    "Currency": "EUR",
    "PlatformFeesAmount": 0,
    "Status": "CAPTURED",
    "NextActions": "REFUNDED, DISPUTED",
    "ExternalData": {
        "ExternalProcessingDate": 1752057968,
        "ExternalProviderReference": "auth-stripe-d400210c-a4d9-4ce2-bfb1-9cf21cde5a80",
        "ExternalMerchantReference": "order-8db7e398-f460-43c8-91ef-19d76d54dbf6",
        "ExternalProviderName": "Stripe",
        "ExternalProviderPaymentMethod": "MASTERCARD"
    },
    "Buyer": {
        "Id": "user_m_01JZB09HSDZRVN60QH1006TK6E"
    },
    "Capture": {
        "Id": "int_capture_0197ef1e-fc77-7e14-97f8-96a38847e375"
    },
    "LineItems": [
        {
            "Id": "int_li_0197ef1e-e53f-7864-aa28-eaef2cc7170f",
            "TotalLineItemAmount": 10000,
            "CapturedAmount": 10000,
            "RefundedAmount": 0,
            "DisputedAmount": 0,
            "SplitAmount": 0
        },
        {
            "Id": "int_li_0197ef1e-e53f-7864-aa28-eaef2cc71710",
            "TotalLineItemAmount": 10000,
            "CapturedAmount": 10000,
            "RefundedAmount": 0,
            "DisputedAmount": 0,
            "SplitAmount": 0
        }
    ],
    "CreationDate": 1752063468,
    "ExecutionDate": 1752063474
}
// No request body