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": "7293229f-8f18-4b83-849c-b05410199b51",
  "ParentId": "5ee6f387-15ba-44dc-8c64-439c2c52da52",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "b1f3c0fd-e361-46b1-9cc9-75ce852b324c",
      "c3658cf7-16b2-4889-85b6-98d9c9890e80"
    ],
    "Companies": [
      "943eef9d-ccab-43d8-a727-ce2302f01957",
      "54838cd5-da40-4b91-8c96-41b9d80ee61a"
    ],
    "Groups": [
      "71ca0c79-87de-4d0d-84f9-d3c7f53a39c4",
      "eb78ab6d-8997-47fe-aaad-4f6a8c12268e"
    ],
    "Opportunities": [
      "ce472567-e37c-4f8f-9c7f-5083864e66b7",
      "4c8e417f-b906-4fc9-80f0-ebdf13dadf2e"
    ]
  }
}

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:
"caf8660e-f2fb-4fd6-a94e-aa542e24109b"