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": "bf5c193a-644b-483a-81cf-428e974a2189",
  "ParentId": "08c3f398-070c-47c4-9d59-8a872789a054",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "a8b5f171-6123-4fbb-8e81-3b0c38a65bd4",
      "d53031c7-3cab-426f-9edd-f0337892ba02"
    ],
    "Companies": [
      "09785baf-e979-43ed-97c8-043587ae0ac2",
      "1e131b97-6c0f-433d-a0cc-41cdbf97c5b1"
    ],
    "Groups": [
      "471336a2-c2f5-45ea-9ca2-1d8337529034",
      "d57d794a-2759-4068-9c73-1432776ce207"
    ],
    "Opportunities": [
      "081fae68-6dc7-4efc-8cdc-c0658ff5d64f",
      "f98437a5-f95a-4a1d-b59a-8245b90303bd"
    ]
  }
}

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:
"5987d049-7894-4d8c-ac46-e8f993bcce68"