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": "362120c9-831d-491b-89a4-3b6a68858e4a",
  "ParentId": "35ba1622-d9d7-41ea-98a5-5dc5799d27d7",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "ab2f2bc3-9ccb-4ede-87f4-266f34f5cb1d",
      "87d976d5-97c7-43ef-bfe8-e5faa3c14525"
    ],
    "Companies": [
      "5a949b82-a5ca-45f9-af2f-d019f5aa2f64",
      "b7693891-a0bb-4715-8e8f-383ec9fac750"
    ],
    "Groups": [
      "b60c90e2-53b1-4325-92cd-d117df1a0343",
      "fe0a5e25-a7fc-4129-a7a1-4256ef0c7c99"
    ],
    "Opportunities": [
      "b558f264-1489-4645-9d07-97123311dbce",
      "419e3171-29df-4510-9ab2-24e4ed0be128"
    ]
  }
}

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:
"5865131f-54a5-4c86-a9d2-064ce3737e29"