Skip to main content
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
}
'
{
  "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>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.getovra.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key (sk_sandbox_* / sk_test_* / sk_live_*) or Agent token (at_* / at_dlg_*)

Body

application/json
agent_id
string
required
intent_id
string
required
base_card_id
string
required
merchant_scope
string
required
Required string length: 1 - 255
amount_limit_euros
number
required
Required range: x <= 100000
token_type
enum<string>
required
Available options:
single_use,
recurring,
metered
currency
string
default:EUR
Required string length: 3
ttl_seconds
integer
Required range: 1 <= x <= 31536000
cadence_days_min
integer
Required range: x >= 1
cadence_days_max
integer
Required range: x >= 1
max_charges
integer | null
Required range: x >= 1
cap_euros
number
Required range: x <= 1000000

Response

Token provisioned

token_ref
string
pan
string

Network token formatted like a PAN

exp_month
integer
exp_year
integer
cvv
string
cryptogram
string
expires_at
string<date-time>
network_metadata
object