ApiGroupInput Data Type

Properties
name data type description
externalId string Every group that is inserted using the API, can have a unique reference to the corresponding group in your data source. This can be anything as long as it is unique and matches this regex: ^[A-Za-z0-9@_.-]+$. This id can later be used to retrieve, update and delete the group. Maximum length of 128 characters.
name string Not null. Maximum length of 256 characters.
about string Maximum length of 2048 characters.
color string Must be a valid hexidecimal representation of a color. Maximum length of 7 characters.
isVisibleInApp boolean

Example

{
  "externalId" : "123456",
  "name" : "Board",
  "about" : "Our meetings are the first Tuesday of every month.",
  "color" : "#419BF9",
  "isVisibleInApp" : true
}