POST api/Groups

Create a new Group Record.

Request Information

URI Parameters

None.

Body Parameters

The Group record data must be passed in through the body of the request in Json format. Set Content-Type header to application/json

MutableEntityExtended
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

ParentId

This field will only include data when working with Group records.

globally unique identifier

None.

Fields

Dictionary of string [key] and Object [value]

None.

LinkedEntities

LinkedEntities

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": "53512b60-3292-4aca-8ba8-f31952db6575",
  "ParentId": "ad25b0e5-dd06-4c89-8344-c67dccff9012",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "c5c185b8-4370-4f61-a900-96d0feb110c6",
      "bb1de39d-fd69-4fce-99d6-cd92521d48cc"
    ],
    "Companies": [
      "e8fd7bd4-659b-46e0-be1a-cccd4d75ceba",
      "555dc640-b828-491f-ab51-92bca9cfb45d"
    ],
    "Groups": [
      "b755603f-48b5-4fcb-89db-38ad0b2d4314",
      "fd2011e4-a547-4989-bf2b-961dbc456e6d"
    ],
    "Opportunities": [
      "bcd94d0b-d1c5-480c-b3f3-d4c7f31b48b8",
      "2a9fe916-001f-487a-ba6e-5d03393f92c8"
    ]
  }
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

This endpoint returns the GUID of the Group record once it is created.

globally unique identifier

Response Formats

application/json, text/json

Sample:
"94099d71-3878-4c4c-9038-5af234a1c16a"