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": "3b81ebed-7bd0-4ddc-8a39-47e59512e7dc",
  "ParentId": "77cc0490-81a0-41b8-9498-a496a1ceee7d",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "36672c02-8748-4bce-a847-7f2a3ebf4593",
      "41dfa6c8-6c06-4274-a747-19bb7b226bfd"
    ],
    "Companies": [
      "b3ed3561-858d-4434-9387-e3e2a8dd51de",
      "a6021dea-e1da-4ad6-812c-0ad260c2b26f"
    ],
    "Groups": [
      "07a38827-2cd2-4023-826a-b043301de1b1",
      "6b638865-c787-466f-8009-7165279c17f9"
    ],
    "Opportunities": [
      "f2f3d2a3-6d21-4766-b416-9939a65f7448",
      "3d807f21-d692-4aae-9f3b-e48739f2d303"
    ]
  }
}

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:
"da15d181-7449-4d29-bca0-10b28cd591ef"