GET api/SocialDriver/DataViewerInvite/{dataViewerGuid}

Get a single data viewer invite - Used by the Data Owner to see who they have shared their data with

Request Information

URI Parameters

NameDescriptionTypeAdditional information
dataViewerGuid

The guid of the data viewer being queried

string

Required

Body Parameters

None.

Response Information

Resource Description

A GetViewerResponse

GetDataViewerInviteResponse
NameDescriptionTypeAdditional information
DataViewerFriendlyName

The data viewers friendly name for the owner

string

None.

DataViewerPermissions

A bitmask of permissions the data viewer has

DataViewerPermissions

None.

DataViewerGuid

The guid of the data viewer used to identify them

string

None.

DataViewerStatus

The current status of the data viewer

DataViewerStatus

None.

ViewerProfileImageURL

The profile picture url of the data viewer

string

None.

Response Formats

application/json, text/json

Sample:
{
  "DataViewerFriendlyName": "sample string 1",
  "DataViewerPermissions": 1,
  "DataViewerGuid": "sample string 2",
  "DataViewerStatus": 0,
  "ViewerProfileImageURL": "sample string 3"
}

application/xml, text/xml

Sample:
<GetDataViewerInviteResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <DataViewerFriendlyName>sample string 1</DataViewerFriendlyName>
  <DataViewerPermissions>ViewTelemetry</DataViewerPermissions>
  <DataViewerGuid>sample string 2</DataViewerGuid>
  <DataViewerStatus>InvitedToDownloadApp</DataViewerStatus>
  <ViewerProfileImageURL>sample string 3</ViewerProfileImageURL>
</GetDataViewerInviteResponse>