Hi Team,
I have a telemedicine app that is currently running across multiple clients, and in this case, I don’t use a token system for patient registration. Instead, I want to enable fast registration by allowing the scanning of a Health Facility QR code without assigning a token number to the patient.
Do you have a request format that accommodates this? Currently, I’m using the following format to send acknowledgments:
{
“requestId”: “”+uuid+"",
“timestamp”: “”+formattedTimestamp+"",
“acknowledgement”: {
“status”: “SUCCESS”,
“healthId”: “”+healthId+"",
“tokenNumber”: “”+counter+""
},
“error”: null,
“resp”: {
“requestId”: “”+requestId+""
}
}
Is there a way to modify this format to support the scenario where no token number is assigned during registration?
Thanks,
Lokesh Kumar