Skip to main content
POST
/
api
/
Groups
Create a Group.
curl --request POST \
  --url https://api.example.com/api/Groups \
  --header 'Content-Type: application/json' \
  --data '
{
  "group": {
    "id": 123,
    "name": "<string>",
    "active": true,
    "createdByID": 123,
    "createdDate": "2023-11-07T05:31:56Z",
    "updatedByID": 123,
    "updatedDate": "2023-11-07T05:31:56Z"
  },
  "memberIds": [
    123
  ],
  "managerIds": [
    123
  ]
}
'
{
  "type": "<string>",
  "title": "<string>",
  "status": 123,
  "detail": "<string>",
  "instance": "<string>"
}

Body

application/json
group
object
memberIds
integer<int32>[] | null
managerIds
integer<int32>[] | null

Response

OK