List Pharmacies

Returns a list of a member's favorite pharmacies. The pharmacies are returned sorted by order in which they were added, with the most recent pharmacies appearing last.

Request

GET /user/v1/member/:memberid/pharmacy

Query Parameters

No parameters

Example

curl -XGET 'https://platform.wellviasolutions.com/user/v1/member/:id/pharmacy' \
    -u 'Bearer:{your_token}'
GET https://platform.wellviasolutions.com/user/v1/member/:id/pharmacy HTTP/1.1
using WellViaSDK.Member;
using WellViaSDK.Clinical;

// Config and credentials outlined in earlier examples
var _memClient = new WellViaMemberServiceClient(config, credentials);

// Return list of pharmacies
var _pharms = await _memClient.GetPharmaciesAsync(memberId: "abc123");

Response

An array of pharmacies. Each entry in the array is a pharmacy object. If no pharmacies are available, the resulting array will be empty.