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": "53fc9e27-6767-4bfd-b4bf-ded7953885f6",
  "ParentId": "85777658-7fbc-4e5b-bb01-40aea118691e",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "3b37a33c-c972-4c7b-bb4b-25ad6f444fc8",
      "a3c6d188-8ee1-499d-b403-f4ece5acc03c"
    ],
    "Companies": [
      "e431043c-6be7-4e11-97a7-98b6dd349693",
      "f2ab0421-2b96-4670-93f8-d30ac3694a1e"
    ],
    "Groups": [
      "1b75fc72-6be4-4bdb-83ed-f8a5ef25314b",
      "6f26ccf8-d6fb-4bc6-a723-b051d4a523c6"
    ],
    "Opportunities": [
      "87c7b2cf-59c3-4e41-a33c-dab0019a687a",
      "53a758fb-3858-4425-87a6-0dcfc334c465"
    ]
  }
}

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:
"62aaa35e-df5f-46e1-be21-b35654c9436e"