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": "af015aab-cd32-405c-bbc9-6b7b94d50948",
"ParentId": "564afca3-1b6c-4df2-9781-b86360595e3d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"d497718d-ca55-4149-b132-c1499d8b519f",
"85772ee2-299e-4650-90a6-ed7f3b47262e"
],
"Companies": [
"6b847a8a-c3b8-4603-9e92-4c7c1bb5c1d4",
"06534771-6523-4521-bafb-80b56e6bceb7"
],
"Groups": [
"e4eb5b61-96e1-4bb6-ba61-95c76c955c49",
"126e8f19-2798-4045-9f0c-7981dcdd158d"
],
"Opportunities": [
"35106bb8-6439-45c2-afd9-a57cfadeac52",
"190b599f-d7c4-4514-8969-0239ec042c08"
]
}
},
{
"Id": "af015aab-cd32-405c-bbc9-6b7b94d50948",
"ParentId": "564afca3-1b6c-4df2-9781-b86360595e3d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"d497718d-ca55-4149-b132-c1499d8b519f",
"85772ee2-299e-4650-90a6-ed7f3b47262e"
],
"Companies": [
"6b847a8a-c3b8-4603-9e92-4c7c1bb5c1d4",
"06534771-6523-4521-bafb-80b56e6bceb7"
],
"Groups": [
"e4eb5b61-96e1-4bb6-ba61-95c76c955c49",
"126e8f19-2798-4045-9f0c-7981dcdd158d"
],
"Opportunities": [
"35106bb8-6439-45c2-afd9-a57cfadeac52",
"190b599f-d7c4-4514-8969-0239ec042c08"
]
}
}
]