GET api/Groups/{id}/opportunities
Get the Opportunities belonging to a Group
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
The criteria list in the body of the request. (Optional)
Collection of CriteriaObject| Name | Description | Type | Additional information |
|---|---|---|---|
| LeftParentheses |
The number of Parentheses on the left. Max value = 5 |
integer |
None. |
| LogicalOperator | LogicalOperator |
None. |
|
| RightParentheses |
The number of Parentheses on the right. Max value = 5 |
integer |
None. |
| FieldTableName | string |
None. |
|
| FieldColumnName | string |
None. |
|
| Operator | OperatorEnum |
None. |
|
| Value | Object |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"LeftParentheses": 1,
"RightParentheses": 2,
"FieldTableName": "sample string 3",
"FieldColumnName": "sample string 4",
"Value": {}
},
{
"LeftParentheses": 1,
"RightParentheses": 2,
"FieldTableName": "sample string 3",
"FieldColumnName": "sample string 4",
"Value": {}
}
]
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of 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. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "95a6fa38-03c2-4d29-94bd-e8f461808e29",
"ParentId": "307dd41b-4335-4e6a-be9e-4312dda06e1b",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"7fd3951f-fa37-4320-b8d3-3b2f918a19dc",
"2fc6dfa5-e0c7-4db9-9867-199e42a8bf41"
],
"Companies": [
"480a269f-6f47-4a11-8e70-3d3adbdc546a",
"efa445d2-c850-430c-9333-9bb03ee4870e"
],
"Groups": [
"f4c3f849-c64b-4dde-a4c8-c165f7ce11fc",
"381bb05a-436d-48a5-b643-fcbf75670941"
],
"Opportunities": [
"6d212bbe-8d67-4552-9ab9-fb6167e82244",
"5f005902-2fd1-42a9-840a-5f16343592e7"
]
}
},
{
"Id": "95a6fa38-03c2-4d29-94bd-e8f461808e29",
"ParentId": "307dd41b-4335-4e6a-be9e-4312dda06e1b",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"7fd3951f-fa37-4320-b8d3-3b2f918a19dc",
"2fc6dfa5-e0c7-4db9-9867-199e42a8bf41"
],
"Companies": [
"480a269f-6f47-4a11-8e70-3d3adbdc546a",
"efa445d2-c850-430c-9333-9bb03ee4870e"
],
"Groups": [
"f4c3f849-c64b-4dde-a4c8-c165f7ce11fc",
"381bb05a-436d-48a5-b643-fcbf75670941"
],
"Opportunities": [
"6d212bbe-8d67-4552-9ab9-fb6167e82244",
"5f005902-2fd1-42a9-840a-5f16343592e7"
]
}
}
]