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": "2db3078b-bda5-4f73-a735-c0b2b177109f",
  "ParentId": "6320d3a9-15a7-4b16-8208-059c46fd7973",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "b1379e03-77b2-4d8e-905a-b48771548700",
      "65552498-d462-488f-8dce-10fa4bec1cbb"
    ],
    "Companies": [
      "d7abf66c-0b7a-411d-8ef2-0debc2c9d422",
      "cb7bf501-c385-42e6-8afa-6efb5837fefe"
    ],
    "Groups": [
      "5ad7e934-3801-4df4-bedd-d1941dafff6b",
      "4d6e439b-256e-4f36-9d01-e7024a1b2060"
    ],
    "Opportunities": [
      "1a18e004-62e4-4e6e-b80f-6c9c0e39bf24",
      "00f07519-f997-449e-b058-146da45bc072"
    ]
  }
}

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:
"ee58c5ae-1572-4727-bbcd-7edb72b513e4"