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": "4bd1c240-91d6-454a-bb01-b79d953d87cb",
"ParentId": "63173bd9-6dbf-4052-803b-9d07af951f3f",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"48f02175-62d0-4934-83c5-f0c2a40af523",
"c8b44628-a71a-4a94-bc60-8103fc582050"
],
"Companies": [
"7afeb459-48e5-448a-9b7b-713a19ad4b73",
"a9b4d4a8-7091-4b74-809b-ee807455444e"
],
"Groups": [
"5562ac52-b563-47cd-bf8f-1bb1e844c608",
"e2eb8a9d-fc4b-4b54-abf8-bd6b4dc22d64"
],
"Opportunities": [
"e772a61f-448d-4116-ae69-6d08af1435f9",
"cc20aab1-ae12-4bf6-bc97-36cdc298ec95"
]
}
},
{
"Id": "4bd1c240-91d6-454a-bb01-b79d953d87cb",
"ParentId": "63173bd9-6dbf-4052-803b-9d07af951f3f",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"48f02175-62d0-4934-83c5-f0c2a40af523",
"c8b44628-a71a-4a94-bc60-8103fc582050"
],
"Companies": [
"7afeb459-48e5-448a-9b7b-713a19ad4b73",
"a9b4d4a8-7091-4b74-809b-ee807455444e"
],
"Groups": [
"5562ac52-b563-47cd-bf8f-1bb1e844c608",
"e2eb8a9d-fc4b-4b54-abf8-bd6b4dc22d64"
],
"Opportunities": [
"e772a61f-448d-4116-ae69-6d08af1435f9",
"cc20aab1-ae12-4bf6-bc97-36cdc298ec95"
]
}
}
]