Retrieve Visit Outcome

Retrieves the outcome details for a specific visit.

Request

GET /clinical/v1/visit/:id/outcome

Path Parameters


id string : required

The id of the visit.


Query Parameters


No parameters

Example


curl -XGET 'https://platform.wellviasolutions.com/clinical/v1/visit/{visitid}/outcome' \
    -u 'Bearer:{your_token}'
GET https://platform.wellviasolutions.com/clinical/v1/visit/{visitid}/outcome HTTP/1.1
using WellViaSDK.Visit;

const string apiSubscriptionKey = "your_api_subscription_key";
var _vstClient = new WellViaVisitServiceClient(subscriptionKey: apiSubscriptionKey);

string visitId = "{visitid}";
var visit = await _vstClient.GetVisitOutcomeAsync(id: visitId);

Response

A Visit Outcome Object if a valid identifier was provided.