POST api/ProcessSettings

Request Information

URI Parameters

None.

Body Parameters

WorkPoint.Core.Models.ProcessSettings
NameDescriptionTypeAdditional information
DisableWPTheme

boolean

None.

PeoplePickerFilter

WorkPoint.Core.Models.ProcessManagement.ProcessExpression

None.

HideDisabledUsersInPicker

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "DisableWPTheme": true,
  "PeoplePickerFilter": {
    "data": {},
    "expression": "sample string 2",
    "rules": [
      {
        "openBracket": true,
        "type1": "Text",
        "value1": {},
        "comparisonOperator": "sample string 3",
        "type2": "Text",
        "value2": {},
        "closeBracket": true,
        "joinOperator": "sample string 6"
      },
      {
        "openBracket": true,
        "type1": "Text",
        "value1": {},
        "comparisonOperator": "sample string 3",
        "type2": "Text",
        "value2": {},
        "closeBracket": true,
        "joinOperator": "sample string 6"
      }
    ],
    "evaluator": "Default"
  },
  "HideDisabledUsersInPicker": true
}

application/xml, text/xml

Sample:
<ProcessSettings xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WorkPoint.Core.Models">
  <DisableWPTheme>true</DisableWPTheme>
  <HideDisabledUsersInPicker>true</HideDisabledUsersInPicker>
  <PeoplePickerFilter xmlns:d2p1="http://schemas.datacontract.org/2004/07/WorkPoint.Core.Models.ProcessManagement">
    <d2p1:Data />
    <d2p1:Evaluator>Default</d2p1:Evaluator>
    <d2p1:Expression>sample string 2</d2p1:Expression>
    <d2p1:Rules>
      <d2p1:ProcessStepExpressionRule>
        <d2p1:CloseBracket>true</d2p1:CloseBracket>
        <d2p1:ComparisonOperator>sample string 3</d2p1:ComparisonOperator>
        <d2p1:JoinOperator>sample string 6</d2p1:JoinOperator>
        <d2p1:OpenBracket>true</d2p1:OpenBracket>
        <d2p1:Type1>Text</d2p1:Type1>
        <d2p1:Type2>Text</d2p1:Type2>
        <d2p1:Value1 />
        <d2p1:Value2 />
      </d2p1:ProcessStepExpressionRule>
      <d2p1:ProcessStepExpressionRule>
        <d2p1:CloseBracket>true</d2p1:CloseBracket>
        <d2p1:ComparisonOperator>sample string 3</d2p1:ComparisonOperator>
        <d2p1:JoinOperator>sample string 6</d2p1:JoinOperator>
        <d2p1:OpenBracket>true</d2p1:OpenBracket>
        <d2p1:Type1>Text</d2p1:Type1>
        <d2p1:Type2>Text</d2p1:Type2>
        <d2p1:Value1 />
        <d2p1:Value2 />
      </d2p1:ProcessStepExpressionRule>
    </d2p1:Rules>
  </PeoplePickerFilter>
</ProcessSettings>

Response Information

Resource Description

System.Web.Http.IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.