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": "bf3c7936-88b5-4e4e-baee-d4c28188c77b",
  "ParentId": "3f72e03d-047f-4616-a7c7-953e010a878e",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "9d483868-38a5-47a0-a1bb-60c0653891eb",
      "a8d978d7-7379-40d2-937c-e0e2fe6ee80d"
    ],
    "Companies": [
      "239234ce-8a69-4b90-825c-15d179ab2c80",
      "dac22e62-6580-4369-a775-23b0863344ea"
    ],
    "Groups": [
      "b8ead3b0-8074-4c6a-9594-6ad0a0798f90",
      "b363730a-2b1f-4f98-8010-7c2ebd3592fa"
    ],
    "Opportunities": [
      "3ee4251d-83ee-46a7-a124-d82156946685",
      "c517559f-14e5-4ac9-9491-59a92b214f95"
    ]
  }
}

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:
"12029088-dcf8-472c-b177-b33b2089a23d"