Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

Anchor
createMessagingGroup
createMessagingGroup

Create a new messaging group

...

idbimCreateMessagingGroup

...

defaulttrue
labelURL / Resource / JSON Structure

...

URLhttps://api-stage.bimplus.net/v2/ systemgroups

Examplehttps://api-stage.bimplus.net/v2/systemgroups

JSON Structure

...

Name

...

Mandatory / Optional

...

Type

...

Description

...

systemGroup

...

mandatory

...

object

...

The object contains information about group to be created where :

  • Id is optional property as string(guid)
  • name mandatory property as string. Must be unique name
  • description option property as string

...

usersIdList

...

mandatory

...

list of string(guid)

...

List of user id’s belonging to the group. User list requires valid user identifiers.

Card
labelHTTP Method
 POST

...

labelDescription

...

Card
labelRequest
Code Block
borderColorGreen
langxml
titleHeaders
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json
Code Block
borderColorRed
langxml
titleJSON
{
  "systemGroup":{
    "name":"Bimplusdevelopers",
    "description":"GroupofBimplusdevelopers"
  },
  "usersIdList":["61c9c325-52a2-21b5-47b6-0a06e7152ff9",
    "6be10633-5950-319f-eae0-12dec2c04219",
    "2e798f29-4b71-15ee-90eb-18592bc18317"
  ]
}

...

labelResponse
Code Block
borderColorGreen
langxml
titleStatus
Status: 201 Created

...

titleJSON

...

Anchor
getAllMessagingGroups
getAllMessagingGroups

...