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| Name | Description | Type | Additional 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": "69346b9d-27fb-4ccf-9c45-89786f92ffb4",
"ParentId": "cf13e51a-51e1-4187-8a41-84a518319b71",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"b09f180f-f862-400c-9544-80033fa148f3",
"c3d7c931-046f-4111-8456-ae7c3fb87295"
],
"Companies": [
"b5f56d35-de54-4c67-a058-b49189e3f88e",
"48b4128f-79ec-4bb6-b459-e3f8ff14ca79"
],
"Groups": [
"84717776-89ac-4ccd-90c4-63ba75ca1cd3",
"db094121-bdcc-4e0b-8118-791c11ab8a78"
],
"Opportunities": [
"5c18d36d-8f51-4ff4-a1d9-9d70ae39c294",
"dcbcba31-2e33-41de-9902-4af00547de90"
]
}
}
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 identifierResponse Formats
application/json, text/json
Sample:
"f1dd46a5-c207-4617-9d00-50847eddd6e3"