Provision a Pass-Through Network Token (D-25)
curl --request POST \
--url https://api.getovra.com/v1/agent-credentials \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"agent_id": "<string>",
"intent_id": "<string>",
"base_card_id": "<string>",
"merchant_scope": "<string>",
"amount_limit_euros": 123,
"currency": "EUR",
"ttl_seconds": 15768000,
"cadence_days_min": 2,
"cadence_days_max": 2,
"max_charges": 2,
"cap_euros": 123
}
'import requests
url = "https://api.getovra.com/v1/agent-credentials"
payload = {
"agent_id": "<string>",
"intent_id": "<string>",
"base_card_id": "<string>",
"merchant_scope": "<string>",
"amount_limit_euros": 123,
"currency": "EUR",
"ttl_seconds": 15768000,
"cadence_days_min": 2,
"cadence_days_max": 2,
"max_charges": 2,
"cap_euros": 123
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
agent_id: '<string>',
intent_id: '<string>',
base_card_id: '<string>',
merchant_scope: '<string>',
amount_limit_euros: 123,
currency: 'EUR',
ttl_seconds: 15768000,
cadence_days_min: 2,
cadence_days_max: 2,
max_charges: 2,
cap_euros: 123
})
};
fetch('https://api.getovra.com/v1/agent-credentials', 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.getovra.com/v1/agent-credentials",
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([
'agent_id' => '<string>',
'intent_id' => '<string>',
'base_card_id' => '<string>',
'merchant_scope' => '<string>',
'amount_limit_euros' => 123,
'currency' => 'EUR',
'ttl_seconds' => 15768000,
'cadence_days_min' => 2,
'cadence_days_max' => 2,
'max_charges' => 2,
'cap_euros' => 123
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$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.getovra.com/v1/agent-credentials"
payload := strings.NewReader("{\n \"agent_id\": \"<string>\",\n \"intent_id\": \"<string>\",\n \"base_card_id\": \"<string>\",\n \"merchant_scope\": \"<string>\",\n \"amount_limit_euros\": 123,\n \"currency\": \"EUR\",\n \"ttl_seconds\": 15768000,\n \"cadence_days_min\": 2,\n \"cadence_days_max\": 2,\n \"max_charges\": 2,\n \"cap_euros\": 123\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.getovra.com/v1/agent-credentials")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"agent_id\": \"<string>\",\n \"intent_id\": \"<string>\",\n \"base_card_id\": \"<string>\",\n \"merchant_scope\": \"<string>\",\n \"amount_limit_euros\": 123,\n \"currency\": \"EUR\",\n \"ttl_seconds\": 15768000,\n \"cadence_days_min\": 2,\n \"cadence_days_max\": 2,\n \"max_charges\": 2,\n \"cap_euros\": 123\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getovra.com/v1/agent-credentials")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"agent_id\": \"<string>\",\n \"intent_id\": \"<string>\",\n \"base_card_id\": \"<string>\",\n \"merchant_scope\": \"<string>\",\n \"amount_limit_euros\": 123,\n \"currency\": \"EUR\",\n \"ttl_seconds\": 15768000,\n \"cadence_days_min\": 2,\n \"cadence_days_max\": 2,\n \"max_charges\": 2,\n \"cap_euros\": 123\n}"
response = http.request(request)
puts response.read_body{
"token_ref": "<string>",
"pan": "<string>",
"exp_month": 123,
"exp_year": 123,
"cvv": "<string>",
"cryptogram": "<string>",
"expires_at": "2023-11-07T05:31:56Z",
"network_metadata": {
"agent_id_bound": true,
"intent_id_bound": "<string>",
"merchant_scope_bound": "<string>",
"amount_limit_bound": 123,
"token_type": "<string>"
}
}{
"error": "<string>"
}{
"error": "<string>"
}Pass-Through
Provision a Pass-Through Network Token (D-25)
Universal rail for merchants without MPP/ACP/TAP integration. Returns
an agent-bound Network Token (dpan, cvv, cryptogram) scoped to
a single merchant, a single amount ceiling, and a TTL. The Visa/MC
network itself declines anything outside the scope — no browser
runtime required.
POST
/
v1
/
agent-credentials
Provision a Pass-Through Network Token (D-25)
curl --request POST \
--url https://api.getovra.com/v1/agent-credentials \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"agent_id": "<string>",
"intent_id": "<string>",
"base_card_id": "<string>",
"merchant_scope": "<string>",
"amount_limit_euros": 123,
"currency": "EUR",
"ttl_seconds": 15768000,
"cadence_days_min": 2,
"cadence_days_max": 2,
"max_charges": 2,
"cap_euros": 123
}
'import requests
url = "https://api.getovra.com/v1/agent-credentials"
payload = {
"agent_id": "<string>",
"intent_id": "<string>",
"base_card_id": "<string>",
"merchant_scope": "<string>",
"amount_limit_euros": 123,
"currency": "EUR",
"ttl_seconds": 15768000,
"cadence_days_min": 2,
"cadence_days_max": 2,
"max_charges": 2,
"cap_euros": 123
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
agent_id: '<string>',
intent_id: '<string>',
base_card_id: '<string>',
merchant_scope: '<string>',
amount_limit_euros: 123,
currency: 'EUR',
ttl_seconds: 15768000,
cadence_days_min: 2,
cadence_days_max: 2,
max_charges: 2,
cap_euros: 123
})
};
fetch('https://api.getovra.com/v1/agent-credentials', 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.getovra.com/v1/agent-credentials",
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([
'agent_id' => '<string>',
'intent_id' => '<string>',
'base_card_id' => '<string>',
'merchant_scope' => '<string>',
'amount_limit_euros' => 123,
'currency' => 'EUR',
'ttl_seconds' => 15768000,
'cadence_days_min' => 2,
'cadence_days_max' => 2,
'max_charges' => 2,
'cap_euros' => 123
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$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.getovra.com/v1/agent-credentials"
payload := strings.NewReader("{\n \"agent_id\": \"<string>\",\n \"intent_id\": \"<string>\",\n \"base_card_id\": \"<string>\",\n \"merchant_scope\": \"<string>\",\n \"amount_limit_euros\": 123,\n \"currency\": \"EUR\",\n \"ttl_seconds\": 15768000,\n \"cadence_days_min\": 2,\n \"cadence_days_max\": 2,\n \"max_charges\": 2,\n \"cap_euros\": 123\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.getovra.com/v1/agent-credentials")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"agent_id\": \"<string>\",\n \"intent_id\": \"<string>\",\n \"base_card_id\": \"<string>\",\n \"merchant_scope\": \"<string>\",\n \"amount_limit_euros\": 123,\n \"currency\": \"EUR\",\n \"ttl_seconds\": 15768000,\n \"cadence_days_min\": 2,\n \"cadence_days_max\": 2,\n \"max_charges\": 2,\n \"cap_euros\": 123\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getovra.com/v1/agent-credentials")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"agent_id\": \"<string>\",\n \"intent_id\": \"<string>\",\n \"base_card_id\": \"<string>\",\n \"merchant_scope\": \"<string>\",\n \"amount_limit_euros\": 123,\n \"currency\": \"EUR\",\n \"ttl_seconds\": 15768000,\n \"cadence_days_min\": 2,\n \"cadence_days_max\": 2,\n \"max_charges\": 2,\n \"cap_euros\": 123\n}"
response = http.request(request)
puts response.read_body{
"token_ref": "<string>",
"pan": "<string>",
"exp_month": 123,
"exp_year": 123,
"cvv": "<string>",
"cryptogram": "<string>",
"expires_at": "2023-11-07T05:31:56Z",
"network_metadata": {
"agent_id_bound": true,
"intent_id_bound": "<string>",
"merchant_scope_bound": "<string>",
"amount_limit_bound": 123,
"token_type": "<string>"
}
}{
"error": "<string>"
}{
"error": "<string>"
}Authorizations
API key (sk_sandbox_* / sk_test_* / sk_live_*) or Agent token (at_* / at_dlg_*)
Body
application/json
Required string length:
1 - 255Required range:
x <= 100000Available options:
single_use, recurring, metered Required string length:
3Required range:
1 <= x <= 31536000Required range:
x >= 1Required range:
x >= 1Required range:
x >= 1Required range:
x <= 1000000⌘I
