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": "1f83f964-beec-4eb9-a4c1-110c067aae4a",
  "ParentId": "b6f9e244-6b2c-415b-b4dd-2c64d6e7e6c4",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "6d80b006-3927-4c55-a334-94e46cb31a6e",
      "ae1f1f89-eae5-4054-b36b-04870d1f2ba2"
    ],
    "Companies": [
      "3b3bf9e4-19c7-4b1c-9f33-d00fb9709bc5",
      "aeac1581-088d-4205-bf09-68741754cce1"
    ],
    "Groups": [
      "9ae7fbc6-3ff2-413e-9f57-adda7c174597",
      "93f09128-a157-4590-8df9-eaca385dd9c0"
    ],
    "Opportunities": [
      "f03c7977-9463-4bfc-a9a4-51e024f5e514",
      "30e1a649-ee1a-42ac-97cc-bfbcd1a77b69"
    ]
  }
}

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:
"b71d6af6-01e8-4db8-93ed-6f8e593fbc58"