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": "102cf2d3-d14d-4b6d-a810-7646017fb687",
  "ParentId": "cb11c209-46e6-4d42-94cd-5f07d19fbe61",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "04a66e70-7706-4056-974b-fa52ae677022",
      "e382d193-ca1a-4d68-a442-a74adde5f908"
    ],
    "Companies": [
      "dfc39139-688e-49c7-b3a7-8610d2a50618",
      "cf1dddc6-3c76-4dd3-8ebb-fdce7c8ccaf2"
    ],
    "Groups": [
      "a3947a16-635c-4a42-952d-d978caea5e8a",
      "224f1ae9-6798-47d3-be4c-6b623d464339"
    ],
    "Opportunities": [
      "3180d1cf-edb4-4bbc-92e3-8a4d47adf941",
      "ce121068-825a-4b02-a67f-2e990381d863"
    ]
  }
}

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:
"cc25ddf5-6ab2-4b95-9e38-3c18a2b2e749"