Retrieve Pharmacy

Retrieves the details of a specific pharmacy.

Request

GET /clinical/v1/pharmacy/:id

Path Parameters


id string : required

The identifier can be the id or the ncpdpid of the pharmacy.


Query Parameters


No parameters

Example


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

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

string pharmacyId = "`{pharmacyid}`";
var pharm = await _clnClient.GetPharmacyAsync(id: pharmacyId);

Response

A pharmacy object if a valid identifier was provided.