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": "c682972e-b1fc-4b93-91e0-8e5cedd40063",
  "ParentId": "06da43a4-6e11-4737-8b4d-dfe2bbf8ea5e",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "f3b105ec-d9a9-4858-8399-49ddfaf1f66f",
      "71930c49-769d-49ed-ad3e-97ff711807c4"
    ],
    "Companies": [
      "8ad9bc74-0096-40a2-98a8-8fb753581bc7",
      "e306efb3-8ee6-4a55-82b7-73883d59321a"
    ],
    "Groups": [
      "f04340c8-131f-40e6-a140-21e0d804dcb6",
      "bb216324-b7ad-48b2-8fcd-00f3efea3786"
    ],
    "Opportunities": [
      "ecf367bd-b5fc-4965-ac42-0ef6c3d67ecf",
      "217d8ca6-5179-47a5-959c-63decf24364b"
    ]
  }
}

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:
"3cb48c79-ce4f-4c7e-929d-50cfe18a9c91"