POST api/groups
Creates a new user group with the specified name, description, and tags.
Request Information
URI Parameters
None.
Body Parameters
An object containing the name, description, and tags for the new group.
UpdateGroupDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| name |
Group Name |
string |
None. |
| description |
Group description |
string |
None. |
| tags |
Group tags, comma seperated list of tags |
string |
None. |
Request Formats
application/json, text/json, application/scim+json
Sample:
{
"name": "sample string 1",
"description": "sample string 2",
"tags": "sample string 3"
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
On success: HTTP 200 OK with the ID of the newly created group. On failure: HTTP 400 Bad Request with a specific error message.
IHttpActionResultNone.
Response Formats
application/json, text/json, application/scim+json
Sample:
Sample not available.