POST api/ExpressPanelSettings/Settings

Request Information

URI Parameters

None.

Body Parameters

WorkPoint.Core.Models.ExpressPanelSettings
NameDescriptionTypeAdditional information
EnableProcessPanel

boolean

None.

ProcessPanelAudience

Collection of WorkPoint.Core.Models.Audience

None.

EnableProcessPushNotifications

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "EnableProcessPanel": true,
  "ProcessPanelAudience": [
    {
      "UserPrincipalName": "sample string 1",
      "name": "sample string 2"
    },
    {
      "UserPrincipalName": "sample string 1",
      "name": "sample string 2"
    }
  ],
  "EnableProcessPushNotifications": true
}

application/xml, text/xml

Sample:
<ExpressPanelSettings xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WorkPoint.Core.Models">
  <EnableProcessPanel>true</EnableProcessPanel>
  <EnableProcessPushNotifications>true</EnableProcessPushNotifications>
  <ProcessPanelAudience>
    <Audience>
      <Name>sample string 2</Name>
      <UserPrincipalName>sample string 1</UserPrincipalName>
    </Audience>
    <Audience>
      <Name>sample string 2</Name>
      <UserPrincipalName>sample string 1</UserPrincipalName>
    </Audience>
  </ProcessPanelAudience>
</ExpressPanelSettings>

Response Information

Resource Description

System.Web.Http.IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.