Skip to main content
POST
/
v1
/
mandates
Mint a payment mandate after passkey ceremony
curl --request POST \
  --url https://api.getovra.com/v1/mandates \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "agent_id": "<string>",
  "expires_at": "2023-11-07T05:31:56Z",
  "constraints": {
    "maxAmountPerTransactionCents": 2,
    "maxAmountPerDayCents": 2,
    "maxAmountPerMonthCents": 2,
    "maxTotalAmountCents": 2,
    "maxUsageCount": 2,
    "allowedMccs": [
      "<string>"
    ],
    "allowedMerchants": [
      "<string>"
    ],
    "allowedCountries": [
      "<string>"
    ]
  },
  "challenge_id": "<string>",
  "assertion": {}
}
'
{
  "error": "<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
Required string length: 1 - 200
expires_at
string<date-time>
required
constraints
object
required
challenge_id
string
required
Required string length: 1 - 200
assertion
object
required

Response

Mandate minted