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": "36749213-07bd-49e7-b8a4-039182139e2e",
  "ParentId": "1d5b0769-9665-4cc4-b3c1-4fbd245dc9c8",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "f04e3506-687e-4ee1-8b99-9441e910e008",
      "9e50b430-b612-482f-99c1-97d83529884d"
    ],
    "Companies": [
      "6cf69f14-d1bc-431b-9c43-21c28aa2cad3",
      "b0bcad88-5f5d-4788-9b87-2cdae4a2b667"
    ],
    "Groups": [
      "250b77b0-f1b7-4e3c-a194-9bad4eace05a",
      "d33bee53-47c0-4b82-915a-cc694d08c1d4"
    ],
    "Opportunities": [
      "bcbc3cf1-d1ab-42d7-83a1-a18994516f82",
      "4f4f02df-1129-4df8-a449-f1b9b93ae4d9"
    ]
  }
}

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:
"752adf10-f61f-4a28-9279-fa2858396b06"