POST api/ReportUsers/{organisation}/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| organisation | string |
None. |
|
| id | string |
None. |
Body Parameters
Collection of ReportUser| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| ReportId | integer |
None. |
|
| UserId | string |
None. |
|
| EmailAddress | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"ReportId": 2,
"UserId": "sample string 3",
"EmailAddress": "sample string 4"
},
{
"Id": 1,
"ReportId": 2,
"UserId": "sample string 3",
"EmailAddress": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfReportUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pyramid.View.API.Models">
<ReportUser>
<EmailAddress>sample string 4</EmailAddress>
<Id>1</Id>
<ReportId>2</ReportId>
<UserId>sample string 3</UserId>
</ReportUser>
<ReportUser>
<EmailAddress>sample string 4</EmailAddress>
<Id>1</Id>
<ReportId>2</ReportId>
<UserId>sample string 3</UserId>
</ReportUser>
</ArrayOfReportUser>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.