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": "a315da5e-4974-4169-ada4-bc20b6d224d3",
  "ParentId": "f6cf8c15-ebad-4c96-ae92-54ae2654190b",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "7500d53e-22e2-4f09-8dd0-821ef5e0ebef",
      "57d909ba-c28e-4926-a847-5da23212ae4a"
    ],
    "Companies": [
      "a320c909-3445-44a2-b63a-d72baab92565",
      "98a2504c-2328-4ef3-a240-65d2fcdc1f39"
    ],
    "Groups": [
      "0a179762-9efd-45d1-8441-33eb1653bea3",
      "3d22e5d7-e03f-4712-b57d-17d4b567c633"
    ],
    "Opportunities": [
      "1c47e621-4003-41d3-8072-1f0a6c6d8745",
      "37c9f8b7-8d8a-4126-b9cb-eb96af564d01"
    ]
  }
}

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:
"0e608a84-7bf2-4055-a470-50e475861d7c"