GET api/v1/partners/viewers
Get all of a partner's viewers.
Request Information
URI Parameters
None.
Body Parameters
PartnerReportViewersBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Authentication | AuthenticationModel |
Required |
|
| Request | PartnerReportViewersRequestModel |
Required |
Request Formats
application/json, text/json
Sample:
{
"Authentication": {
"Id": "sample string 1",
"Key": "sample string 2"
},
"Request": {
"ISVName": "sample string 1",
"RequestedBy": "sample string 2"
}
}
application/xml, text/xml
Sample:
<PartnerReportViewersBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Models">
<Authentication>
<Id>sample string 1</Id>
<Key>sample string 2</Key>
</Authentication>
<Request>
<ISVName>sample string 1</ISVName>
<RequestedBy>sample string 2</RequestedBy>
</Request>
</PartnerReportViewersBindingModel>
Response Information
Resource Description
OutgoingPartnerModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Message | MessageModel |
None. |
|
| Response | IPartnerReportResponse |
None. |
Response Formats
application/json, text/json
Sample:
{
"Message": {
"Code": "sample string 1",
"Description": "sample string 2"
},
"Response": null
}
application/xml, text/xml
Sample:
<OutgoingPartnerModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Models">
<Message>
<Code>sample string 1</Code>
<Description>sample string 2</Description>
</Message>
<Response i:nil="true" />
</OutgoingPartnerModel>