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": "41b71cd2-7892-484c-8c10-57a2a92c1700",
"ParentId": "bc8502f4-489c-4af0-8129-621178d2c172",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"688ae06e-9d73-4c89-bfca-7a4a42821f77",
"759be4dc-0042-43a5-afdb-bd0d1ff2bbc2"
],
"Companies": [
"52c6e494-c501-48d4-8b16-204aa95d81a2",
"6b2312f4-c664-43f5-8311-0a7180fdba37"
],
"Groups": [
"3b3e1b30-90fa-43f3-8e5b-e229b19eb337",
"97683ac8-c16b-4e60-b2ba-2842cb7642fd"
],
"Opportunities": [
"07b9efcc-0a28-4a44-9102-2bc828885b14",
"8ef9051d-ad1b-4e4b-b1a7-efd16580335e"
]
}
},
{
"Id": "41b71cd2-7892-484c-8c10-57a2a92c1700",
"ParentId": "bc8502f4-489c-4af0-8129-621178d2c172",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"688ae06e-9d73-4c89-bfca-7a4a42821f77",
"759be4dc-0042-43a5-afdb-bd0d1ff2bbc2"
],
"Companies": [
"52c6e494-c501-48d4-8b16-204aa95d81a2",
"6b2312f4-c664-43f5-8311-0a7180fdba37"
],
"Groups": [
"3b3e1b30-90fa-43f3-8e5b-e229b19eb337",
"97683ac8-c16b-4e60-b2ba-2842cb7642fd"
],
"Opportunities": [
"07b9efcc-0a28-4a44-9102-2bc828885b14",
"8ef9051d-ad1b-4e4b-b1a7-efd16580335e"
]
}
}
]