Capture Authorization
Captures a previously authorized payment. Charges the customer.
POST
/
v1
/
payments
/
{payment_id}
/
transactions
/
{transaction_id}
/
capture
Capture Authorization
curl --request POST \
--url https://api-sandbox.y.uno/v1/payments/{payment_id}/transactions/{transaction_id}/capture \
--header 'Content-Type: application/json' \
--header 'X-Idempotency-Key: <x-idempotency-key>' \
--data '
{
"merchant_reference": "capture-001",
"reason": "PRODUCT_CONFIRMED",
"amount": {
"currency": "USD",
"value": 10000
}
}
'import requests
url = "https://api-sandbox.y.uno/v1/payments/{payment_id}/transactions/{transaction_id}/capture"
payload = {
"merchant_reference": "capture-001",
"reason": "PRODUCT_CONFIRMED",
"amount": {
"currency": "USD",
"value": 10000
}
}
headers = {
"X-Idempotency-Key": "<x-idempotency-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-Idempotency-Key': '<x-idempotency-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
merchant_reference: 'capture-001',
reason: 'PRODUCT_CONFIRMED',
amount: {currency: 'USD', value: 10000}
})
};
fetch('https://api-sandbox.y.uno/v1/payments/{payment_id}/transactions/{transaction_id}/capture', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-sandbox.y.uno/v1/payments/{payment_id}/transactions/{transaction_id}/capture",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'merchant_reference' => 'capture-001',
'reason' => 'PRODUCT_CONFIRMED',
'amount' => [
'currency' => 'USD',
'value' => 10000
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Idempotency-Key: <x-idempotency-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api-sandbox.y.uno/v1/payments/{payment_id}/transactions/{transaction_id}/capture"
payload := strings.NewReader("{\n \"merchant_reference\": \"capture-001\",\n \"reason\": \"PRODUCT_CONFIRMED\",\n \"amount\": {\n \"currency\": \"USD\",\n \"value\": 10000\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Idempotency-Key", "<x-idempotency-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api-sandbox.y.uno/v1/payments/{payment_id}/transactions/{transaction_id}/capture")
.header("X-Idempotency-Key", "<x-idempotency-key>")
.header("Content-Type", "application/json")
.body("{\n \"merchant_reference\": \"capture-001\",\n \"reason\": \"PRODUCT_CONFIRMED\",\n \"amount\": {\n \"currency\": \"USD\",\n \"value\": 10000\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-sandbox.y.uno/v1/payments/{payment_id}/transactions/{transaction_id}/capture")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Idempotency-Key"] = '<x-idempotency-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"merchant_reference\": \"capture-001\",\n \"reason\": \"PRODUCT_CONFIRMED\",\n \"amount\": {\n \"currency\": \"USD\",\n \"value\": 10000\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "<string>",
"type": "PURCHASE",
"amount": {
"currency": "<string>",
"value": 123
},
"created_at": "2023-11-07T05:31:56Z"
}Headers
Unique UUID per request. Prevents duplicate processing on retries.
Body
application/json
Was this page helpful?
⌘I
Capture Authorization
curl --request POST \
--url https://api-sandbox.y.uno/v1/payments/{payment_id}/transactions/{transaction_id}/capture \
--header 'Content-Type: application/json' \
--header 'X-Idempotency-Key: <x-idempotency-key>' \
--data '
{
"merchant_reference": "capture-001",
"reason": "PRODUCT_CONFIRMED",
"amount": {
"currency": "USD",
"value": 10000
}
}
'import requests
url = "https://api-sandbox.y.uno/v1/payments/{payment_id}/transactions/{transaction_id}/capture"
payload = {
"merchant_reference": "capture-001",
"reason": "PRODUCT_CONFIRMED",
"amount": {
"currency": "USD",
"value": 10000
}
}
headers = {
"X-Idempotency-Key": "<x-idempotency-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-Idempotency-Key': '<x-idempotency-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
merchant_reference: 'capture-001',
reason: 'PRODUCT_CONFIRMED',
amount: {currency: 'USD', value: 10000}
})
};
fetch('https://api-sandbox.y.uno/v1/payments/{payment_id}/transactions/{transaction_id}/capture', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-sandbox.y.uno/v1/payments/{payment_id}/transactions/{transaction_id}/capture",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'merchant_reference' => 'capture-001',
'reason' => 'PRODUCT_CONFIRMED',
'amount' => [
'currency' => 'USD',
'value' => 10000
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Idempotency-Key: <x-idempotency-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api-sandbox.y.uno/v1/payments/{payment_id}/transactions/{transaction_id}/capture"
payload := strings.NewReader("{\n \"merchant_reference\": \"capture-001\",\n \"reason\": \"PRODUCT_CONFIRMED\",\n \"amount\": {\n \"currency\": \"USD\",\n \"value\": 10000\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Idempotency-Key", "<x-idempotency-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api-sandbox.y.uno/v1/payments/{payment_id}/transactions/{transaction_id}/capture")
.header("X-Idempotency-Key", "<x-idempotency-key>")
.header("Content-Type", "application/json")
.body("{\n \"merchant_reference\": \"capture-001\",\n \"reason\": \"PRODUCT_CONFIRMED\",\n \"amount\": {\n \"currency\": \"USD\",\n \"value\": 10000\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-sandbox.y.uno/v1/payments/{payment_id}/transactions/{transaction_id}/capture")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Idempotency-Key"] = '<x-idempotency-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"merchant_reference\": \"capture-001\",\n \"reason\": \"PRODUCT_CONFIRMED\",\n \"amount\": {\n \"currency\": \"USD\",\n \"value\": 10000\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "<string>",
"type": "PURCHASE",
"amount": {
"currency": "<string>",
"value": 123
},
"created_at": "2023-11-07T05:31:56Z"
}