Commerce Engine is now in beta. We're working hard to make it better for you.
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": "<string>"
}
}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": "<string>"
}
}Was this page helpful?