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": "7e4ce759-8562-4769-9783-224a39ce658e",
  "ParentId": "641068ca-f3ad-4c83-9eb1-5bf7cc22c22f",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "0234bb92-470b-4f38-a579-b77429983556",
      "1f102ddb-e454-43f8-828b-53208adc5e62"
    ],
    "Companies": [
      "15fa2af5-e274-4603-9d2a-9154aa40055d",
      "137effe2-9937-4618-8127-eef34eaa5155"
    ],
    "Groups": [
      "07e1a4a1-b664-4c02-8ffc-b11cbb900d73",
      "21c9505d-9294-4594-b124-086042170eb0"
    ],
    "Opportunities": [
      "df034064-f298-4da9-82c4-44f267a09e6b",
      "68a5f088-e646-47af-9309-692fbbe04ea5"
    ]
  }
}

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:
"e7fd4f6e-3840-49cd-a07b-1a28029bb0a3"