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": "511ed4a4-1a65-4724-93cf-33cec0a5b2cf",
"ParentId": "c6f51352-9f84-4540-9ee8-26e616175050",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"c6381d75-dbd1-40d7-b346-0399668144a6",
"91512431-e2d1-4f80-9aa4-095aeef8eae3"
],
"Companies": [
"cafa530a-9bdc-4c8b-a8cc-e0fb217a97b8",
"9044292d-7986-45bd-8f1c-3410f8a5595b"
],
"Groups": [
"267c21c4-8d37-44e1-9451-73d847945a2c",
"0b5b1402-502d-4428-8461-39cb35b31fbb"
],
"Opportunities": [
"25ad84ce-e834-4657-86d5-be3be080c66e",
"805fe2ed-d27a-4f23-be03-a38f1623e5da"
]
}
},
{
"Id": "511ed4a4-1a65-4724-93cf-33cec0a5b2cf",
"ParentId": "c6f51352-9f84-4540-9ee8-26e616175050",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"c6381d75-dbd1-40d7-b346-0399668144a6",
"91512431-e2d1-4f80-9aa4-095aeef8eae3"
],
"Companies": [
"cafa530a-9bdc-4c8b-a8cc-e0fb217a97b8",
"9044292d-7986-45bd-8f1c-3410f8a5595b"
],
"Groups": [
"267c21c4-8d37-44e1-9451-73d847945a2c",
"0b5b1402-502d-4428-8461-39cb35b31fbb"
],
"Opportunities": [
"25ad84ce-e834-4657-86d5-be3be080c66e",
"805fe2ed-d27a-4f23-be03-a38f1623e5da"
]
}
}
]