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": "1d323d88-d56f-4363-9dc7-9195edebad6e",
  "ParentId": "6c3eba02-0bc2-4fdd-beb8-7d3f5e90111c",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "b851a13d-eb41-4b35-b7de-dfe2f6601a93",
      "0e37d6a1-0099-4ff1-9c5b-6c2fd7296509"
    ],
    "Companies": [
      "510d1d40-5e01-4148-a9c3-ad07d5f3805e",
      "c3ca18de-399b-4776-896e-e80be4d3fc74"
    ],
    "Groups": [
      "7f6838d6-5ab8-43ed-8e23-afd7670cf6e6",
      "2c6b620d-a870-473f-b5fb-8275655d41d2"
    ],
    "Opportunities": [
      "216c4018-89c7-4914-95dd-837ffea2e072",
      "21f9a0da-dad0-41f4-bb1a-0478a6e46c81"
    ]
  }
}

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:
"83d6e402-b93f-42d1-a8be-bdaf29ca41ea"