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>"
}Return card details for an approved intent. API keys only — agent tokens cannot access this endpoint.
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>"
}