POST api/Users/MyProcessSettings
Update "My Process Settings" for the current user
Request Information
URI Parameters
None.
Body Parameters
WorkPoint.Core.Models.ProcessManagement.MyProcessSettings| Name | Description | Type | Additional information |
|---|---|---|---|
| PushNotificationSettings | WorkPoint.Core.Models.ProcessManagement.PushNotificationSettings |
None. |
|
| ProcessDateRange | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"PushNotificationSettings": {
"Completed": true,
"AwaitingInput": true,
"Failed": true
},
"ProcessDateRange": 1
}
application/xml, text/xml
Sample:
<MyProcessSettings xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WorkPoint.Core.Models.ProcessManagement">
<ProcessDateRange>1</ProcessDateRange>
<PushNotificationSettings>
<AwaitingInput>true</AwaitingInput>
<Completed>true</Completed>
<Failed>true</Failed>
</PushNotificationSettings>
</MyProcessSettings>
Response Information
Resource Description
System.Web.Http.IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.