Skip to main content
POST
/
checkout
/
credential
Get card details for an approved intent
curl --request POST \
  --url https://api.getovra.com/checkout/credential \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "intentId": "<string>"
}
'
{
  "pan": "<string>",
  "expiryMonth": 123,
  "expiryYear": 123,
  "cvc": "<string>",
  "holderName": "<string>"
}

Authorizations

Authorization
string
header
required

API key (sk_...) or Agent token (at_...)

Body

application/json
intentId
string
required

Response

Card credentials for the intent

pan
string
required
expiryMonth
integer
required
expiryYear
integer
required
cvc
string
required
holderName
string
required