Currently we have an integration from our app to Clover Go G1 app that allows us to launch Clover Go G1 app when needed and pass invoice details, currently we launch it using following URI:
$"clovergo://orders/quickmode?cgrequest={requestObject}"
{
"EmailID": "test@test.com",
"Amount": 1,
"ItemDescription": "test item",
"ReferenceID": "InvoiceID",
"CallBackURI": "ourAppCallBackURI"
}
We have received several new Clover Go G2 devices that requires Clover Go G2 app, now we need to launch Clover Go G2 app from our app the same exact way that we are launching Clover Go G1 app described above. We tried mutiple options and none of them work, for example:
$"clover.companion.app://orders"
$"clover.companion.app://orders/"
$"clover.companion.app://orders/quickmode?cgrequest={requestObject}"
We can't find any information in Clover Go Documentation as well. Please assist.