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": "64d39bd3-d05a-45e0-b053-31c77f641572",
  "ParentId": "33cfad1e-5d14-4046-90fe-b2cc07fafe58",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "75af1095-8f98-49da-b2ef-8d87b5ab5847",
      "0e5fa02d-39dd-437a-85b3-048d77199f04"
    ],
    "Companies": [
      "9c015505-2a76-49ea-8d86-3b2a2d848382",
      "f6cedfc6-e425-4d88-a9ac-c8b6ff37b791"
    ],
    "Groups": [
      "ff8310db-e31c-4a82-b033-0ac4a590c54d",
      "b6192ca8-d491-4d5f-b062-13290219551e"
    ],
    "Opportunities": [
      "703603e8-05b2-4a8d-99cd-e23ee28c671c",
      "5f7c5429-ad7f-4f31-b181-a9f59ed95a20"
    ]
  }
}

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:
"da235a83-f915-4f64-80ac-d4fdd0dd6501"