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": "a054291e-215f-4d57-b40c-2b6103f91123",
  "ParentId": "037052c7-4941-4699-a5c5-f5efceef1eeb",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "9aedd044-ea5e-4c73-a3e6-00d58fb4c875",
      "eb309ce4-4fab-41ef-8f00-69642732182b"
    ],
    "Companies": [
      "bf254119-ecc1-4cfa-a039-3f43e6c0d630",
      "8a51236f-d135-493a-991b-75c5638caecb"
    ],
    "Groups": [
      "0707575c-d897-4364-9065-b3ea9aa02ace",
      "f2866daf-1956-4787-a7ec-08408a46e3bb"
    ],
    "Opportunities": [
      "f2daa32e-7ad4-4334-b665-fcae7e938bf5",
      "def5168f-5b59-4749-a34b-6c0cd4df2dad"
    ]
  }
}

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:
"7ca8eb52-e522-48e2-9e57-fcf37d8183d0"