curl --request POST \
--url https://api.getovra.com/checkout/detect \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"cdpBaseUrl": "<string>"
}
'{
"provider": "<string>",
"iframeUrl": "<string>",
"hasCardFields": true,
"fields": {
"pan": true,
"expiry": true,
"cvc": true
}
}Detect payment form on a page via CDP. Returns provider and field detection.
curl --request POST \
--url https://api.getovra.com/checkout/detect \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"cdpBaseUrl": "<string>"
}
'{
"provider": "<string>",
"iframeUrl": "<string>",
"hasCardFields": true,
"fields": {
"pan": true,
"expiry": true,
"cvc": true
}
}