POST maintenance/assignItemsForTenant
Request Information
URI Parameters
None.
Body Parameters
AssignObject| Name | Description | Type | Additional information |
|---|---|---|---|
| Type | string |
None. |
|
| Items | Collection of AssignItem |
None. |
Request Formats
application/json, text/json
Sample:
{
"Type": "sample string 1",
"Items": [
{
"Id": 1,
"Checked": true
},
{
"Id": 1,
"Checked": true
}
]
}
text/html
Sample:
{"Type":"sample string 1","Items":[{"Id":1,"Checked":true},{"Id":1,"Checked":true}]}
application/xml, text/xml
Sample:
<AssignObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ListenerOnline.BusinessEntities.Maintenance">
<Items>
<AssignItem>
<Checked>true</Checked>
<Id>1</Id>
</AssignItem>
<AssignItem>
<Checked>true</Checked>
<Id>1</Id>
</AssignItem>
</Items>
<Type>sample string 1</Type>
</AssignObject>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, text/html, application/xml, text/xml
Sample:
Sample not available.