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": "9b3ead93-8dd4-41b8-aa39-e59abb77788c",
  "ParentId": "a79b1305-7fd0-4c37-8aad-096152ae8fe2",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "6ecbddc2-8328-4f87-b9f8-0e1b3a94b9ee",
      "7270063c-400c-4278-b1c2-2735e1f98a57"
    ],
    "Companies": [
      "a1c3eed4-ef77-4317-835e-827a0ad02374",
      "9e8b6461-2fc4-4511-a3ac-a5b94f2ec0c5"
    ],
    "Groups": [
      "9f4cd6c1-b9c8-4f65-ba24-6a85fe25029c",
      "97cfa533-3d55-4e67-9d37-f589593737ae"
    ],
    "Opportunities": [
      "c038c8f7-e871-42ec-81d0-b0655c027944",
      "030a50aa-49dc-4881-ab11-fbc26c3a0d90"
    ]
  }
}

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:
"47d10044-2f55-4f11-b30d-b94d20362921"