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": "08399fb5-8f45-4130-bcd3-b326ad509359",
  "ParentId": "3fcec565-84d4-4150-92f0-aa611519927c",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "bbc61c1a-ec34-4594-bf6d-870df60e0e38",
      "b5dafd96-9f17-449e-913f-16129924f0dc"
    ],
    "Companies": [
      "10e889f4-6977-4994-8787-e42aaee399b5",
      "cc4cf70d-66cc-4998-a428-cb990c2aa387"
    ],
    "Groups": [
      "e00b7ea4-9ebd-43d6-8695-6fe234ebe953",
      "3d507d08-e33a-413d-82d9-b14b301d475a"
    ],
    "Opportunities": [
      "3e90abe6-306e-46f9-a968-3eeed10caa56",
      "cc1e42c5-82dd-4fab-a0f9-472838b3f689"
    ]
  }
}

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:
"30a4a178-5e10-4478-ba95-95ddc53aef23"