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": "759bde66-aa26-4719-af6c-33d175cb8ae0",
  "ParentId": "768da9f5-6647-45ab-958d-ef37e7045fcd",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "39a91f50-c0e0-434c-ad11-07db5da36a7a",
      "ea1d3368-42c2-4526-802a-866fc2ae7bd0"
    ],
    "Companies": [
      "0f14b1e2-d1e1-4d53-b061-547021cd709d",
      "3f75ab20-a3a6-474a-99ca-e3d016981a10"
    ],
    "Groups": [
      "5325e1e1-c82d-4170-8a72-bffe089f211b",
      "baa2c240-ff4f-43c3-94f1-ecb3206c63ab"
    ],
    "Opportunities": [
      "b2269ab2-0dfd-4bdc-8335-bfcd0df70618",
      "aa7d0f76-6dbf-48e3-a223-194ae0754bf8"
    ]
  }
}

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:
"7cb88c25-fc29-429c-9c8e-8b7bf3d413fc"