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": "51f4691d-440b-4e59-ad10-a9c190107890",
  "ParentId": "0e31ba95-dfa1-4d19-965d-cbbe654bc05c",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "2f41bd72-bfe5-4d32-a4e3-81b7e171690b",
      "225c36a3-dbee-4c6b-9082-f940baf18e50"
    ],
    "Companies": [
      "638e19e4-859d-4910-9237-b717a1847f2f",
      "4604e987-71d1-490b-b724-c40cfa078426"
    ],
    "Groups": [
      "9b91a056-16b1-4ca5-9c24-9051ea6ac373",
      "228eaa14-e571-481d-a753-e2b7882dac6c"
    ],
    "Opportunities": [
      "f9d304c0-3664-4d6d-a001-7909b02e563d",
      "fcf5be29-b53f-4c64-8478-800f031f839a"
    ]
  }
}

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:
"b41d2554-ac62-4687-aa73-ceff6801766c"