Retrieve Prescription

Retrieves the details of a specific prescription.

Request

GET /clinical/v1/prescription/:id

Path Parameters


id string : required

The id of the prescription.


Query Parameters


No parameters

Example


curl -XGET 'https://platform.wellviasolutions.com/clinical/v1/prescription/`{prescriptionid}`' \
    -u 'Bearer:`{your_token}`'
GET https://platform.wellviasolutions.com/clinical/v1/prescription/`{prescriptionid}` HTTP/1.1
using WellViaSDK.Clinical;

const string apiSubscriptionKey = "your_api_subscription_key";
var _clnClient = new WellViaClinicalServiceClient(subscriptionKey: apiSubscriptionKey);

string prescriptionId = "`{prescriptionid}`";
var pharm = await _clnClient.GetPrescriptionAsync(id: prescriptionId);

Response

A Prescription Object if a valid identifier was provided.