POST api/ActivityManager/Status/UserGroupStatuses

Request Information

URI Parameters

None.

Body Parameters

Collection of string

Request Formats

application/json, text/json

Sample:
[
  "sample string 1",
  "sample string 2"
]

application/xml, text/xml

Sample:
<ArrayOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <string>sample string 1</string>
  <string>sample string 2</string>
</ArrayOfstring>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of ActivityManagerStatus
NameDescriptionTypeAdditional 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.

Response Formats

application/json, text/json

Sample:
[
  {
    "Identity": "305da86e-9386-49d7-912c-0519d7d797d5",
    "Name": "sample string 2",
    "Description": "sample string 3",
    "SendNotifications": true,
    "BackgroundColor": "sample string 5",
    "TextColor": "sample string 6",
    "UseColor": true,
    "Rank": 8,
    "IsReadOnly": true
  },
  {
    "Identity": "305da86e-9386-49d7-912c-0519d7d797d5",
    "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:
<ArrayOfActivityManagerStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Scientia.Platform.API.Model">
  <ActivityManagerStatus>
    <BackgroundColor>sample string 5</BackgroundColor>
    <Description>sample string 3</Description>
    <Identity>305da86e-9386-49d7-912c-0519d7d797d5</Identity>
    <IsReadOnly>true</IsReadOnly>
    <Name>sample string 2</Name>
    <Rank>8</Rank>
    <SendNotifications>true</SendNotifications>
    <TextColor>sample string 6</TextColor>
    <UseColor>true</UseColor>
  </ActivityManagerStatus>
  <ActivityManagerStatus>
    <BackgroundColor>sample string 5</BackgroundColor>
    <Description>sample string 3</Description>
    <Identity>305da86e-9386-49d7-912c-0519d7d797d5</Identity>
    <IsReadOnly>true</IsReadOnly>
    <Name>sample string 2</Name>
    <Rank>8</Rank>
    <SendNotifications>true</SendNotifications>
    <TextColor>sample string 6</TextColor>
    <UseColor>true</UseColor>
  </ActivityManagerStatus>
</ArrayOfActivityManagerStatus>