--
You received this message because you are subscribed to the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this group and stop receiving emails from it, send an email to drchrono-api...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Net;
using System.IO;
using System.Threading.Tasks;
using System.Web.Script.Serialization;
using System.Diagnostics;
using Configuration;
namespace GetDrchronoAPIData
{
class Program
{
static void Main(string[] args)
{
// Setup the variables necessary to make the Request
string grantType = "authorization_code";
string redirect_uri = ConfigurationManager.AppSettings["REDIRECT_URI"].ToString();
string client_id = ConfigurationManager.AppSettings["CLIENT_ID"].ToString();
string client_secret = ConfigurationManager.AppSettings["CLIENT_SECRET"].ToString();
string url = "https://drchrono.com/o/token/";
HttpWebResponse response = null;
try
{
// Create the data to send
StringBuilder data = new StringBuilder();
data.Append("grant_type=" + Uri.EscapeDataString(grantType));
data.Append("&redirect_uri=" + Uri.EscapeDataString(redirect_uri));
data.Append("&client_id=" + Uri.EscapeDataString(client_id));
data.Append("&client_secret=" + Uri.EscapeDataString(client_secret));
// Create a byte array of the data to be sent
byte[] byteArray = Encoding.UTF8.GetBytes(data.ToString());
// Setup the Request
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
request.ContentLength = byteArray.Length;
// Write data
Stream postStream = request.GetRequestStream();
postStream.Write(byteArray, 0, byteArray.Length);
postStream.Close();
// Send Request & Get Response
response = (HttpWebResponse)request.GetResponse();
using (StreamReader reader = new StreamReader(response.GetResponseStream()))
{
// Get the Response Stream
string json = reader.ReadLine();
Console.WriteLine(json);
// Retrieve and Return the Access Token
JavaScriptSerializer ser = new JavaScriptSerializer();
Dictionary<string, object> x = (Dictionary<string, object>)ser.DeserializeObject(json);
string accessToken = x["access_token"].ToString();
Console.ReadKey();
}
}
catch (WebException e)
{
// This exception will be raised if the server didn't return 200 - OK
// Retrieve more information about the error
if (e.Response != null)
{
using (HttpWebResponse err = (HttpWebResponse)e.Response)
{
Console.WriteLine("The server returned '{0}' with the status code '{1} ({2:d})'.",
err.StatusDescription, err.StatusCode, err.StatusCode);
}
}
}
finally
{
if (response != null) { response.Close(); }
}
Console.ReadLine();
}
}
}
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api...@googlegroups.com.
...
I've managed to successfully implement an outh2 client in c# and have authorized and received the token.
Erick,
I can definitely help you with this. Without seeing your full code and your actual request, I noticed a problem in the class you posted. It looks like you are trying to authenticate using a two legged handshake. Dr Chrono api uses a three legged approach.
You need to send a request first to the authorize endpoint with the same parameters you are using. Make sure your grant type is set to 'Authorization_Code'. There are essentially three different grant types in oauth. After you make the initial request the server will respond with a 'code' parameter. You need to parse the results and extract the code.
Then you can send a request to the token endpoint with code you have obtained and exchange it for a token.
I haven't written a C# console app in a little while so please forgive me if I am misreading something. But I am pretty sure this is your first problem.
Oauth2 can sometimes be difficult to implement depending on your setup. If you need further help, just let me know. I would probably need to see your full code, or at least your network requests to see the full flow. You're definitely on the correct path though. Don't give up.
did you figure out how to log in? I'm facing the same issue, would appreciate help as it doesn't look like the DrChrono support really cares to make any of our lives easier. Can't believe there are no working samples of pretty much anything.
Sure, I think I can help you, but I have the code at work.
Sunil,
did you figure out how to log in? I'm facing the same issue, would appreciate help as it doesn't look like the DrChrono support really cares to make any of our lives easier. Can't believe there are no working samples of pretty much anything.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api+unsubscribe@googlegroups.com.
Eric,
That’s not a problem, will be glad to get it on Monday.
Thanks a lot!
Steve
From: drchro...@googlegroups.com [mailto:drchro...@googlegroups.com] On Behalf Of Erick Langford Xenes
Sent: Friday, October 14, 2016 11:59 PM
To: drchro...@googlegroups.com
Subject: Re: Fetching Data from Drchrono API and save in local database for Reporting
Sure, I think I can help you, but I have the code at work.
On Oct 14, 2016 10:57 PM, <smi...@gmail.com> wrote:
Sunil,
did you figure out how to log in? I'm facing the same issue, would appreciate help as it doesn't look like the DrChrono support really cares to make any of our lives easier. Can't believe there are no working samples of pretty much anything.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api...@googlegroups.com.
Sunil,
did you figure out how to log in? I'm facing the same issue, would appreciate help as it doesn't look like the DrChrono support really cares to make any of our lives easier. Can't believe there are no working samples of pretty much anything.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api+unsubscribe@googlegroups.com.
Sunil,
I had the app already registered/created in their site, was ready to start digging into it. I also use C#, which they don’t support (judging by what they answered you) so your code sample can save me tons of grieve.
Thanks again!
Steve
Steve Mirson | National Vision, Inc. | www.nationalvision.com | Systems Architect | 215.882.1374 | steve....@nationalvision.com
From: drchro...@googlegroups.com [mailto:drchro...@googlegroups.com] On Behalf Of Sunil Sharma
Sent: Saturday, October 15, 2016 3:24 PM
To: drchro...@googlegroups.com
Subject: Re: Fetching Data from Drchrono API and save in local database for Reporting
Hi Smirson,
To unsubscribe from this group and all its topics, send an email to drchrono-api...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api...@googlegroups.com.
HTML Code
<div class="jumbotron">
<h1>Medical Data Tracking</h1>
<p class="lead">Drchrono API Integration. click below to get the authentication token and referesh token</p>
<p><a class="btn btn-primary btn-large drchrono">Call to Dr.Chrono »</a></p>
</div>
//Javascript code on same html page
// in below code you replace values of “rdirect_uri” with your registered app URL, and “client_id” value
<script type="text/javascript">
$(document).ready(function () {
$(".drchrono").click(function(){
debugger
window.location.href = url;
});
})
</script>
//Following is my server side code in ASP.NET MVC this code is in my "Home" controller
public async Task<ActionResult> DrChrono(string code)
{
ViewBag.Message = "Calling to Dr Chrono";
// Build up the data to POST.
List<KeyValuePair<string, string>> postData = new List<KeyValuePair<string, string>>();
postData.Add(new KeyValuePair<string, string>("code", code));
postData.Add(new KeyValuePair<string, string>("grant_type", "authorization_code"));
postData.Add(new KeyValuePair<string, string>("redirect_uri", "http://localhost:51106/Home/DrChrono"));
postData.Add(new KeyValuePair<string, string>("client_id", client_id));
postData.Add(new KeyValuePair<string, string>("client_secret", client_secret));
HttpClient client = new HttpClient();
client.DefaultRequestHeaders.Accept.Clear();
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
FormUrlEncodedContent content = new FormUrlEncodedContent(postData);
HttpResponseMessage response = await client.PostAsync("https://drchrono.com/o/token/", content);
if (response.IsSuccessStatusCode)
{
// Parse the response body. Blocking!
var dataObject = response.Content.ReadAsStringAsync().Result;
jsonReturn objjsonReturn = new JavaScriptSerializer().Deserialize<jsonReturn>(dataObject);
// var t = await getPatientList(objjsonReturn);
// ViewBag.Code = objjsonReturn.access_token;
var accessToken = objjsonReturn.access_token;
var refereshtoken = objjsonReturn.refresh_token;
}
else
{
Console.WriteLine("{0} ({1})", (int)response.StatusCode, response.ReasonPhrase);
}
return View();
}
Sunil,
I had the app already registered/created in their site, was ready to start digging into it. I also use C#, which they don’t support (judging by what they answered you) so your code sample can save me tons of grieve.
Thanks again!
Steve
Steve Mirson | National Vision, Inc. | www.nationalvision.com | Systems Architect | 215.882.1374 | steve.mirson@nationalvision.com
From: drchro...@googlegroups.com [mailto:drchrono-api@googlegroups.com] On Behalf Of Sunil Sharma
Sent: Saturday, October 15, 2016 3:24 PM
To: drchro...@googlegroups.com
Subject: Re: Fetching Data from Drchrono API and save in local database for Reporting
Hi Smirson,
For login and getting authentication token from drchrono api , you need to do the settings on drchronoapi website in API sections, where you need to provide the URL of your webapplication.
details I will send you tommorrow , I did in asp.net MVC C#.
Regards
Sunil
On Sat, Oct 15, 2016 at 9:27 AM, <smi...@gmail.com> wrote:
Sunil,
did you figure out how to log in? I'm facing the same issue, would appreciate help as it doesn't look like the DrChrono support really cares to make any of our lives easier. Can't believe there are no working samples of pretty much anything.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api+unsubscribe@googlegroups.com.
Sunil,
Thank you so much for the code! Incredibly helpful! I’ll let you know as soon as I try it.
Thank you,
Steve
Steve Mirson | National Vision, Inc. | www.nationalvision.com | Systems Architect | 215.882.1374 | steve....@nationalvision.com
From: drchro...@googlegroups.com [mailto:drchro...@googlegroups.com] On Behalf Of Sunil Sharma
Sent: Saturday, October 15, 2016 11:47 PM
To: drchro...@googlegroups.com
Subject: Re: Fetching Data from Drchrono API and save in local database for Reporting
Hello Steve,
Steve Mirson | National Vision, Inc. | www.nationalvision.com | Systems Architect | 215.882.1374 | steve....@nationalvision.com
From: drchro...@googlegroups.com [mailto:drchro...@googlegroups.com] On Behalf Of Sunil Sharma
Sent: Saturday, October 15, 2016 3:24 PM
To: drchro...@googlegroups.com
Subject: Re: Fetching Data from Drchrono API and save in local database for Reporting
Hi Smirson,
For login and getting authentication token from drchrono api , you need to do the settings on drchronoapi website in API sections, where you need to provide the URL of your webapplication.
details I will send you tommorrow , I did in asp.net MVC C#.
Regards
Sunil
On Sat, Oct 15, 2016 at 9:27 AM, <smi...@gmail.com> wrote:
Sunil,
did you figure out how to log in? I'm facing the same issue, would appreciate help as it doesn't look like the DrChrono support really cares to make any of our lives easier. Can't believe there are no working samples of pretty much anything.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api...@googlegroups.com.

Sunil,
Thank you so much for the code! Incredibly helpful! I’ll let you know as soon as I try it.
Thank you,
Steve
Steve Mirson | National Vision, Inc. | www.nationalvision.com | Systems Architect | 215.882.1374 | steve.mirson@nationalvision.com
Steve Mirson | National Vision, Inc. | www.nationalvision.com | Systems Architect | 215.882.1374 | steve.mirson@nationalvision.com
From: drchro...@googlegroups.com [mailto:drchrono-api@googlegroups.com] On Behalf Of Sunil Sharma
Sent: Saturday, October 15, 2016 3:24 PM
To: drchro...@googlegroups.com
Subject: Re: Fetching Data from Drchrono API and save in local database for Reporting
Hi Smirson,
For login and getting authentication token from drchrono api , you need to do the settings on drchronoapi website in API sections, where you need to provide the URL of your webapplication.
details I will send you tommorrow , I did in asp.net MVC C#.
Regards
Sunil
On Sat, Oct 15, 2016 at 9:27 AM, <smi...@gmail.com> wrote:
Sunil,
did you figure out how to log in? I'm facing the same issue, would appreciate help as it doesn't look like the DrChrono support really cares to make any of our lives easier. Can't believe there are no working samples of pretty much anything.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api+unsubscribe@googlegroups.com.
Eric,
Thanks for the help. The samples and your comments are huge time savers...
Thank you,
Steve
Steve Mirson | National Vision, Inc. | www.nationalvision.com | Systems Architect | 215.882.1374 | steve....@nationalvision.com
From: drchro...@googlegroups.com [mailto:drchro...@googlegroups.com] On Behalf Of Erick Langford Xenes
Sent: Monday, October 17, 2016 12:24 PM
To: drchro...@googlegroups.com
Subject: Re: Fetching Data from Drchrono API and save in local database for Reporting
Mr Sunil explication is very clear.
Steve Mirson | National Vision, Inc. | www.nationalvision.com | Systems Architect | 215.882.1374 | steve....@nationalvision.com
Steve Mirson | National Vision, Inc. | www.nationalvision.com | Systems Architect | 215.882.1374 | steve....@nationalvision.com
From: drchro...@googlegroups.com [mailto:drchro...@googlegroups.com] On Behalf Of Sunil Sharma
Sent: Saturday, October 15, 2016 3:24 PM
To: drchro...@googlegroups.com
Subject: Re: Fetching Data from Drchrono API and save in local database for Reporting
Hi Smirson,
For login and getting authentication token from drchrono api , you need to do the settings on drchronoapi website in API sections, where you need to provide the URL of your webapplication.
details I will send you tommorrow , I did in asp.net MVC C#.
Regards
Sunil
On Sat, Oct 15, 2016 at 9:27 AM, <smi...@gmail.com> wrote:
Sunil,
did you figure out how to log in? I'm facing the same issue, would appreciate help as it doesn't look like the DrChrono support really cares to make any of our lives easier. Can't believe there are no working samples of pretty much anything.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api...@googlegroups.com.
Eric, Sunil,
Thanks a lot guys! You made my life much easier with your samples. Got it all working!
Thank you,
Steve
Steve Mirson | National Vision, Inc. | www.nationalvision.com | Systems Architect | 215.882.1374 | steve....@nationalvision.com
From: drchro...@googlegroups.com [mailto:drchro...@googlegroups.com] On Behalf Of Sunil Sharma
Sent: Monday, October 17, 2016 2:35 PM
To: drchro...@googlegroups.com
Subject: Re: Fetching Data from Drchrono API and save in local database for Reporting
Thanks! Erick, for sharing this code, it will save the time of developers.
Steve Mirson | National Vision, Inc. | www.nationalvision.com | Systems Architect | 215.882.1374 | steve....@nationalvision.com
Steve Mirson | National Vision, Inc. | www.nationalvision.com | Systems Architect | 215.882.1374 | steve....@nationalvision.com
From: drchro...@googlegroups.com [mailto:drchro...@googlegroups.com] On Behalf Of Sunil Sharma
Sent: Saturday, October 15, 2016 3:24 PM
To: drchro...@googlegroups.com
Subject: Re: Fetching Data from Drchrono API and save in local database for Reporting
Hi Smirson,
For login and getting authentication token from drchrono api , you need to do the settings on drchronoapi website in API sections, where you need to provide the URL of your webapplication.
details I will send you tommorrow , I did in asp.net MVC C#.
Regards
Sunil
On Sat, Oct 15, 2016 at 9:27 AM, <smi...@gmail.com> wrote:
Sunil,
did you figure out how to log in? I'm facing the same issue, would appreciate help as it doesn't look like the DrChrono support really cares to make any of our lives easier. Can't believe there are no working samples of pretty much anything.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "drchrono Medical Healthcare API SDK" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/drchrono-api/TMkMUcib2WU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to drchrono-api...@googlegroups.com.