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": "aef7166e-4bed-4fc6-a4af-d609bc1a1076",
"ParentId": "1e43c844-e784-4ce4-8e64-dc9cd561d20d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"2b9ff028-7d68-4049-acd6-4b44ca0b8420",
"5e37986f-b981-4301-a619-89f52de72501"
],
"Companies": [
"32a3ce7a-565a-4e07-9354-3647f9897560",
"8e26b8fe-82b4-4b65-b407-428af4eff876"
],
"Groups": [
"c4174edf-e88a-4f3e-bf1b-e2206b2c36ce",
"a19732d4-cab6-4834-a7e2-2a71170c188c"
],
"Opportunities": [
"2dcfc711-a4d5-4b85-b462-83cc060ed64f",
"75348b4b-890e-45f5-8ca5-73d6f1d2da8f"
]
}
},
{
"Id": "aef7166e-4bed-4fc6-a4af-d609bc1a1076",
"ParentId": "1e43c844-e784-4ce4-8e64-dc9cd561d20d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"2b9ff028-7d68-4049-acd6-4b44ca0b8420",
"5e37986f-b981-4301-a619-89f52de72501"
],
"Companies": [
"32a3ce7a-565a-4e07-9354-3647f9897560",
"8e26b8fe-82b4-4b65-b407-428af4eff876"
],
"Groups": [
"c4174edf-e88a-4f3e-bf1b-e2206b2c36ce",
"a19732d4-cab6-4834-a7e2-2a71170c188c"
],
"Opportunities": [
"2dcfc711-a4d5-4b85-b462-83cc060ed64f",
"75348b4b-890e-45f5-8ca5-73d6f1d2da8f"
]
}
}
]