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": "0dcf6a35-435b-4bcb-b5d0-3b76520a717e",
  "ParentId": "cd638f4a-b6e5-4aea-b504-8730d5fda295",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "b8f4a33a-5fd2-45a1-bb51-6c4f3600ff42",
      "2464c627-3238-41b2-896c-61cab3d79063"
    ],
    "Companies": [
      "f52843f7-e124-4312-aa58-a1b984af8c09",
      "78bf5954-9453-4e3d-96c6-2457e23c9751"
    ],
    "Groups": [
      "76deed62-12a3-44dc-bd33-29bd1cf927d2",
      "23e64e74-aa80-499b-b7bd-f7a6c2d506a2"
    ],
    "Opportunities": [
      "eccc8ace-277f-48e9-adeb-473872ee7ecc",
      "17f2b4c7-36f6-4a28-80ab-a5d14be1ddb4"
    ]
  }
}

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:
"d9585c66-ca20-422b-9f4e-a41ea4aebc9a"