Commerce Engine is now in early preview. Please report any issues or feedback to support@commercengine.io
curl --request GET \
--url https://staging.api.commercengine.io/api/v1/{store_id}/storefront/payments/verify-vpa \
--header 'Authorization: Bearer <token>'{
"message": "<string>",
"success": true,
"content": {
"vpa": "<string>",
"status": "valid",
"customer_name": "<string>",
"mandate_details": {
"is_handle_supported": true
}
}
}The Virtual Payment Address or VPA is a unique ID given to an individual using the Unified Payment Interface (UPI) service to send or receive money. In the case of UPI collect VPA is the mandatory param and merchants are always advised to check if the VPA is valid or not. Validating the VPA will help in reducing the failure rate due to incorrect vpa.
curl --request GET \
--url https://staging.api.commercengine.io/api/v1/{store_id}/storefront/payments/verify-vpa \
--header 'Authorization: Bearer <token>'{
"message": "<string>",
"success": true,
"content": {
"vpa": "<string>",
"status": "valid",
"customer_name": "<string>",
"mandate_details": {
"is_handle_supported": true
}
}
}Was this page helpful?