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": "fe4ba339-fda4-4b37-af6e-9ee083876c7f",
  "ParentId": "ae7eb682-4d84-41a5-b11d-c280e523041d",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "e7564344-0b9f-4807-b26e-5fc930dbe235",
      "af018314-9b44-487c-8037-8db863bf644a"
    ],
    "Companies": [
      "b55ac71e-4552-4b8d-ab77-4a3d7efd3f9c",
      "920454c0-8df0-4ed7-a0b3-e1d009992d1f"
    ],
    "Groups": [
      "75014aa3-972b-4c22-ad9e-3ff33e6d2263",
      "0a3f1a5b-6f7d-45ea-aff4-84434b1feea0"
    ],
    "Opportunities": [
      "0ecb45ad-c1f7-4033-b353-778af69fabcf",
      "afb09c1c-396c-451c-99a1-8ee02960ca9e"
    ]
  }
}

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:
"e4a4726f-5f23-4e34-8926-f12c4b23a518"