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": "efd25291-6618-45d3-a749-28e548eaff44",
"ParentId": "287afdd9-95da-493a-bd5e-a50dd0546e40",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"bcd6bfc0-8641-4038-87d6-e605780b1b45",
"a71faf3f-e947-45db-9afd-5a8ae44d685c"
],
"Companies": [
"6d02830c-d934-4869-b058-9defd7218136",
"21047afc-2342-4708-8238-dd6414ff2fa6"
],
"Groups": [
"5151f8fd-f026-466e-8cc9-463e0bf16273",
"22f8eb60-0bcb-41ed-a295-4c9a237e177d"
],
"Opportunities": [
"244f576a-3e52-4449-b605-1471dac2c026",
"11cb6f7f-a125-4b1b-9856-4678a4713eaf"
]
}
},
{
"Id": "efd25291-6618-45d3-a749-28e548eaff44",
"ParentId": "287afdd9-95da-493a-bd5e-a50dd0546e40",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"bcd6bfc0-8641-4038-87d6-e605780b1b45",
"a71faf3f-e947-45db-9afd-5a8ae44d685c"
],
"Companies": [
"6d02830c-d934-4869-b058-9defd7218136",
"21047afc-2342-4708-8238-dd6414ff2fa6"
],
"Groups": [
"5151f8fd-f026-466e-8cc9-463e0bf16273",
"22f8eb60-0bcb-41ed-a295-4c9a237e177d"
],
"Opportunities": [
"244f576a-3e52-4449-b605-1471dac2c026",
"11cb6f7f-a125-4b1b-9856-4678a4713eaf"
]
}
}
]