Create New Group
POST/org/:orgId/groups
Create a new Group in the Organization
Request
Path Parameters
orgId stringrequired
The Organization ID (UUID) for which you are querying.
- application/json
Body
required
any
Responses
- 200
- 401
- 404
- 500
Success.
- application/json
- Schema
- Example (from schema)
- Example
Schema
any
{
  "status": {
    "i18n_message": "response.ok",
    "message": "OK"
  },
  "response": {
    "ID": "2f81a670-6c9b-4af4-71fd-7a79adda0da2",
    "OrgID": "default",
    "Name": "My Third Group"
  }
}
{
  "status": {
    "i18n_message": "response.ok",
    "message": "OK"
  },
  "response": {
    "ID": "2f81a670-6c9b-4af4-71fd-7a79adda0da2",
    "OrgID": "default",
    "Name": "My Third Group"
  }
}
This error will occur if calling user does not have access right for the API.
This error will occur if the org identified by orgId does not exist.
A server error occurred. Check the logs for more details.
Loading...