POST api/ActivityManager/Statuses
Request Information
URI Parameters
None.
Body Parameters
ActivityManagerStatus| Name | Description | Type | Additional information |
|---|---|---|---|
| Identity | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| Description | string |
None. |
|
| SendNotifications | boolean |
None. |
|
| BackgroundColor | string |
None. |
|
| TextColor | string |
None. |
|
| UseColor | boolean |
None. |
|
| Rank | integer |
None. |
|
| IsReadOnly | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Identity": "40dca168-285d-4d46-b7ef-0aeade2c0229",
"Name": "sample string 2",
"Description": "sample string 3",
"SendNotifications": true,
"BackgroundColor": "sample string 5",
"TextColor": "sample string 6",
"UseColor": true,
"Rank": 8,
"IsReadOnly": true
}
application/xml, text/xml
Sample:
<ActivityManagerStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Scientia.Platform.API.Model"> <BackgroundColor>sample string 5</BackgroundColor> <Description>sample string 3</Description> <Identity>40dca168-285d-4d46-b7ef-0aeade2c0229</Identity> <IsReadOnly>true</IsReadOnly> <Name>sample string 2</Name> <Rank>8</Rank> <SendNotifications>true</SendNotifications> <TextColor>sample string 6</TextColor> <UseColor>true</UseColor> </ActivityManagerStatus>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |