Have you ever heard about E-Prescription?? No. Then you are on the right page to know about it.
E-Prescription is where you get a medical prescription right on your device just by online consulting with the doctor. Isn’t that much easier ? But for that, we will introduce you to the platforms working for these kinds of services.
And one of them which we worked on is the DoseSpot platform
DoseSpot is an integration that allows e-Prescribing services. DoseSpot is a platform for medical healthcare services or in-practice management and is designed affordably for IT HealthCare industries. Through this, we can send the prescription to the patient.
The below image is just a brief idea about how DoseSpot works.
As we had a brief introduction about DoseSpot, let’s check the implementation on the patient side. This guide is intended for developers as a detailed reference for the behavior of the RESTful APIs provided by the DoseSpot App. The purpose and usage of each operation, request and response details, and examples can be found in this document.
To implement DoseSpot on the patient side we need to create the profile while using DoseSpot Apis.
In order to grant access from your DoseSpot Staging environment to the RESTful API. This is enabled at the clinic level, so if you need to use multiple Staging clinics be sure to make that clear to your Integration Specialist.
After we create an account on DoseSpot through the admin console they provide us the clinic Id.
Under clinic Id, we need to create a clinician to get the clinician Id. Once we get the clinic Id from the console they provide us with the patient Id.
Example.
For Create Patient – 12XXXX
For Physician – 13XXXX
Clinic_id – 11XXX
Clinical Key :- xxxxxxxxxxxxxxxxxxxxx
To create a patient on an android platform we use the APIs provided by the DoseSpot.
The endpoints shown for each operation in this guide should be appended to the base URL.
Note: The production base URL is different and will be provided after passing the Surescripts certification in the staging environment.
Every RESTful API request in DoseSpot needs to be authenticated. To authenticate, you must create an access token using Basic Authentication. Before creating an access token, the following parameters are required
To create Encrypted ClinicId, and Encrypted UserId DoseSpot provide the required format accordingly. After we create this ids we can access the DoseSpot token
To create the token a BasicAuth header must be used in this request. Username must be set to ClinicId and Password to Encrypted ClinicId.
The body of this request must use the x-www-form-urlencoded content type and the following key-value pairs: Key Value grant_type password Username UserId Password Encrypted UserId Note: Use the exact string “password” without quotation marks.
Each time a token is needed, new Encrypted ClinicId and Encrypted UserId values must be generated. In the Staging environment, tokens are currently set to expire after 10 minutes.
Using retrofit we can have an example of the access token :
var okHttpClient = OkHttpClient().newBuilder().addInterceptor(object : Interceptor { @Throws(IOException::class) override fun intercept(chain: Interceptor.Chain): Response { val originalRequest: Request = chain.request() val builder: Request.Builder = originalRequest.newBuilder().header( "Authorization", Credentials.basic( CLINIC_USER_ID_DOSESPOT, ENCRYPTED_CLINIC_USER_ID ) ) val newRequest: Request = builder.build() return chain.proceed(newRequest) } }).addInterceptor(HttpLoggingInterceptor().apply { level = if (BuildConfig.DEBUG) HttpLoggingInterceptor.Level.BODY else HttpLoggingInterceptor.Level.NONE }).build() val gson = GsonBuilder() .setLenient() .create(); private val retrofit = Retrofit.Builder() .baseUrl(DOSESPOT_BASE_URL) .client(okHttpClient) .addConverterFactory(GsonConverterFactory.create(gson)) .build() fun create(service: Class<T>): T { return retrofit.create(service) } @FormUrlEncoded @POST("/endpoint") fun getDoseSpotToken( @Field("grant_type") grant_type: String?, @Field("Username") Username: Int?, @Field("Password") title: String? ): Call<DoseSpotTokenResponseModel>? val call = BasicAuthClient<RepositoryInterface>().create(RepositoryInterface::class.java) .getDoseSpotToken( PASSWORD, PATIENT_USER_ID_DOSESPOT, encryptedUserId ) call?.enqueue(object : Callback<DoseSpotTokenResponseModel> { override fun onFailure(call: Call<DoseSpotTokenResponseModel>, t: Throwable) { log.v(tags, toString()) } override fun onResponse( call: Call<DoseSpotTokenResponseModel>, response: Response<DoseSpotTokenResponseModel> ) { if (response.isSuccessful) { response.body()?.let { val DOSE_SPOT_ACCESS_TOKEN= it.access_token } } else { log.v(tags, "else-${response.errorBody().toString()}") } } })
From the above part we can now use DoseSpot access token for other apis of DoseSpot
Now to create a patient profile on DoseSpot we need to follow the instruction given by DoseSpot for the apis
private val client = OkHttpClient.Builder().addInterceptor(HttpLoggingInterceptor().apply { level = if (BuildConfig.DEBUG) HttpLoggingInterceptor.Level.BODY else HttpLoggingInterceptor.Level.NONE }) .addInterceptor( OAuthInterceptor( "Bearer ", DOSE_SPOT_ACCESS_TOKEN )).build() val gson = GsonBuilder() .setLenient() .create() private val retrofit = Retrofit.Builder() .baseUrl(DOSESPOT_BASE_URL) .client(client) .addConverterFactory(GsonConverterFactory.create(gson)) .build() fun create(service: Class<T>): T { return retrofit.create(service) } @FormUrlEncoded @POST("/endpoint") fun getDoseProfileId( @Field("FirstName") firstName: String?, @Field("LastName") lastName: String?, @Field("DateOfBirth") dateOfBirth: String, @Field("Gender") gender: Int, @Field("Address1") address1: String?, @Field("City") city: String?, @Field("State") state: String?, @Field("ZipCode") zipCode: String?, @Field("PrimaryPhone") primaryPhone: String?, @Field("PrimaryPhoneType") primaryPhoneType: Int?, @Field("Active") active: Boolean?, @Field("Height") height: Int?, @Field("HeightMetric") heightMetric: Int?, @Field("Weight") weight: Int?, @Field("WeightMetric") weightMetric: Int?, ): Call<DoseSpotProfileIDResponseModel>? val call = AuthClient<RepositoryInterface>().create(RepositoryInterface::class.java) .getDoseProfileId( first_name, last_name, dateOfBirth.toString(), gender, address1, city, state, zipCode, primaryPhone, primaryPhoneType, true, height, 1, weight?.toInt(), 1 ) call?.enqueue(object : Callback<DoseSpotProfileIDResponseModel?> { override fun onResponse( call: Call<DoseSpotProfileIDResponseModel?>, response: Response<DoseSpotProfileIDResponseModel?> ) { if (response.isSuccessful) { logE(Tags, "dosespot id-" + response.body()?.id) if (response.body()?.id != -1 && response.body()?.id != null) { PATIENT_DOSESPOT_ID=response.body()?.id.toString().trim() } else { log.v(Tags, "error" + dosespot_profile_error) } } } override fun onFailure(call: Call<DoseSpotProfileIDResponseModel?>, t: Throwable) { log.v(Tags, "failure" + t.message) } }) Thus we got a successful response from dosespot to create a profile. Now physicians can send the prescription to the patient directly through a physician login portal
In this blog, we saw what is DoseSpot, Features of DoseSpot and its Implementation. This completes the guide to the implementation of DoseSpot on the Android platform.
The team at Mindbowser was highly professional, patient, and collaborative throughout our engagement. They struck the right balance between offering guidance and taking direction, which made the development process smooth. Although our project wasn’t related to healthcare, we clearly benefited...
Founder, Texas Ranch Security
Mindbowser played a crucial role in helping us bring everything together into a unified, cohesive product. Their commitment to industry-standard coding practices made an enormous difference, allowing developers to seamlessly transition in and out of the project without any confusion....
CEO, MarketsAI
I'm thrilled to be partnering with Mindbowser on our journey with TravelRite. The collaboration has been exceptional, and I’m truly grateful for the dedication and expertise the team has brought to the development process. Their commitment to our mission is...
Founder & CEO, TravelRite
The Mindbowser team's professionalism consistently impressed me. Their commitment to quality shone through in every aspect of the project. They truly went the extra mile, ensuring they understood our needs perfectly and were always willing to invest the time to...
CTO, New Day Therapeutics
I collaborated with Mindbowser for several years on a complex SaaS platform project. They took over a partially completed project and successfully transformed it into a fully functional and robust platform. Throughout the entire process, the quality of their work...
President, E.B. Carlson
Mindbowser and team are professional, talented and very responsive. They got us through a challenging situation with our IOT product successfully. They will be our go to dev team going forward.
Founder, Cascada
Amazing team to work with. Very responsive and very skilled in both front and backend engineering. Looking forward to our next project together.
Co-Founder, Emerge
The team is great to work with. Very professional, on task, and efficient.
Founder, PeriopMD
I can not express enough how pleased we are with the whole team. From the first call and meeting, they took our vision and ran with it. Communication was easy and everyone was flexible to our schedule. I’m excited to...
Founder, Seeke
We had very close go live timeline and Mindbowser team got us live a month before.
CEO, BuyNow WorldWide
If you want a team of great developers, I recommend them for the next project.
Founder, Teach Reach
Mindbowser built both iOS and Android apps for Mindworks, that have stood the test of time. 5 years later they still function quite beautifully. Their team always met their objectives and I'm very happy with the end result. Thank you!
Founder, Mindworks
Mindbowser has delivered a much better quality product than our previous tech vendors. Our product is stable and passed Well Architected Framework Review from AWS.
CEO, PurpleAnt
I am happy to share that we got USD 10k in cloud credits courtesy of our friends at Mindbowser. Thank you Pravin and Ayush, this means a lot to us.
CTO, Shortlist
Mindbowser is one of the reasons that our app is successful. These guys have been a great team.
Founder & CEO, MangoMirror
Kudos for all your hard work and diligence on the Telehealth platform project. You made it possible.
CEO, ThriveHealth
Mindbowser helped us build an awesome iOS app to bring balance to people’s lives.
CEO, SMILINGMIND
They were a very responsive team! Extremely easy to communicate and work with!
Founder & CEO, TotTech
We’ve had very little-to-no hiccups at all—it’s been a really pleasurable experience.
Co-Founder, TEAM8s
Mindbowser was very helpful with explaining the development process and started quickly on the project.
Executive Director of Product Development, Innovation Lab
The greatest benefit we got from Mindbowser is the expertise. Their team has developed apps in all different industries with all types of social proofs.
Co-Founder, Vesica
Mindbowser is professional, efficient and thorough.
Consultant, XPRIZE
Very committed, they create beautiful apps and are very benevolent. They have brilliant Ideas.
Founder, S.T.A.R.S of Wellness
Mindbowser was great; they listened to us a lot and helped us hone in on the actual idea of the app. They had put together fantastic wireframes for us.
Co-Founder, Flat Earth
Ayush was responsive and paired me with the best team member possible, to complete my complex vision and project. Could not be happier.
Founder, Child Life On Call
The team from Mindbowser stayed on task, asked the right questions, and completed the required tasks in a timely fashion! Strong work team!
CEO, SDOH2Health LLC
Mindbowser was easy to work with and hit the ground running, immediately feeling like part of our team.
CEO, Stealth Startup
Mindbowser was an excellent partner in developing my fitness app. They were patient, attentive, & understood my business needs. The end product exceeded my expectations. Thrilled to share it globally.
Owner, Phalanx
Mindbowser's expertise in tech, process & mobile development made them our choice for our app. The team was dedicated to the process & delivered high-quality features on time. They also gave valuable industry advice. Highly recommend them for app development...
Co-Founder, Fox&Fork