List Prescriptions

Retrieves a list of prescriptions. At least one query parameter must be provided.

Request

GET /clinical/v1/prescription

Path Parameters


No parameters

Query Parameters


memberid string : optional

The unique id of a member.


visitid string : optional

The unique id of a visit.


providerid string : optional

The unique id of a provider.


count numeric : optional

The maximum number of results to return. Default value is 50.


Example


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

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

string visitId = "{visitid}";
var rxs = await _clnClient.GetPrescriptionsAsync(visitId: visitId);

Response

A list of Prescription Objects if valid parameters were provided.