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": "b294f917-2d02-408c-8f19-70ff559f188b",
"ParentId": "2f4a7826-652a-4a17-bf96-1aaa04a3eb92",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"d799bae8-0474-4ca1-bda6-ac0838b0160e",
"d51db3a8-0715-4a65-9472-771db0ec9f2c"
],
"Companies": [
"7ebde3c5-81d4-4a33-8e20-c04a48a4518a",
"c306fd96-67a5-43d6-ba1f-334157d11813"
],
"Groups": [
"b1754fd8-cbe0-42a7-95d5-e8406b466969",
"3b4de6f3-ff7a-40ff-b9d8-7e9a28bd411c"
],
"Opportunities": [
"14bdc130-a343-432a-a468-497e3647692b",
"3db97325-b301-4304-bf3f-3a15c8a74e5b"
]
}
},
{
"Id": "b294f917-2d02-408c-8f19-70ff559f188b",
"ParentId": "2f4a7826-652a-4a17-bf96-1aaa04a3eb92",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"d799bae8-0474-4ca1-bda6-ac0838b0160e",
"d51db3a8-0715-4a65-9472-771db0ec9f2c"
],
"Companies": [
"7ebde3c5-81d4-4a33-8e20-c04a48a4518a",
"c306fd96-67a5-43d6-ba1f-334157d11813"
],
"Groups": [
"b1754fd8-cbe0-42a7-95d5-e8406b466969",
"3b4de6f3-ff7a-40ff-b9d8-7e9a28bd411c"
],
"Opportunities": [
"14bdc130-a343-432a-a468-497e3647692b",
"3db97325-b301-4304-bf3f-3a15c8a74e5b"
]
}
}
]