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": "4c9e06b9-464d-4028-b9ad-5b4864188c92",
"ParentId": "80eaa5f5-0876-437c-82c0-bb2c1a0ab242",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"f586c93e-f59f-4e6d-ae78-ff38bfdda56c",
"4aab32b4-53a2-47b8-9ae1-dfdf023f749f"
],
"Companies": [
"fca8fab9-714a-4168-b46e-864b25687c9a",
"f1ccd771-e83d-475d-a584-a835d8ba20c3"
],
"Groups": [
"4478d73b-2449-4bea-832e-e1fc34f509b4",
"2fa40db0-aa88-4836-84f5-b58fbb8459ee"
],
"Opportunities": [
"28574f98-6fd2-40a9-a9dd-9b9611897266",
"670e7d4c-c37b-4978-bd60-dd2171df0a1e"
]
}
},
{
"Id": "4c9e06b9-464d-4028-b9ad-5b4864188c92",
"ParentId": "80eaa5f5-0876-437c-82c0-bb2c1a0ab242",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"f586c93e-f59f-4e6d-ae78-ff38bfdda56c",
"4aab32b4-53a2-47b8-9ae1-dfdf023f749f"
],
"Companies": [
"fca8fab9-714a-4168-b46e-864b25687c9a",
"f1ccd771-e83d-475d-a584-a835d8ba20c3"
],
"Groups": [
"4478d73b-2449-4bea-832e-e1fc34f509b4",
"2fa40db0-aa88-4836-84f5-b58fbb8459ee"
],
"Opportunities": [
"28574f98-6fd2-40a9-a9dd-9b9611897266",
"670e7d4c-c37b-4978-bd60-dd2171df0a1e"
]
}
}
]