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": "09811071-bc02-483c-91c0-e8a207add7a0",
  "ParentId": "13f0df85-819a-4e0d-b4df-61295938179c",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "d0b0ba73-a89c-4b54-bc4f-92f3406a29d1",
      "03a84e10-a18f-4d7e-8603-786b1b8d0927"
    ],
    "Companies": [
      "c691bb12-cbae-4f40-81e1-10223f5944b1",
      "3fec2585-ba31-47b1-8d52-75bd8c17a324"
    ],
    "Groups": [
      "b4b70c1b-d687-4f5c-8fe1-107015f64d39",
      "44c6f73e-d64f-47e7-8524-a90abdbf2101"
    ],
    "Opportunities": [
      "faf2e68c-99af-4296-b9be-7a26059a3615",
      "1f4ea62b-4ac4-45c6-96cc-533b544dceac"
    ]
  }
}

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:
"645875e1-7fc6-48b7-87f3-591274848830"