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": "42cb2872-0349-4cf2-9f61-7f223d1155f9",
"ParentId": "7d9ebf77-ab62-4cd5-9bd8-cc270a4d1c2e",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"9097c14e-d1d6-4d98-beba-2044d6a03195",
"b1af1694-99f4-4b9f-8bb8-4cba8d848217"
],
"Companies": [
"cbc2aa38-ff58-4689-894a-781e73633a38",
"d8bf06c8-687d-4751-82ff-469b8faf4b80"
],
"Groups": [
"897eb630-a9e9-4577-9e88-7484e01f30a6",
"9004d5f2-8958-4ed6-ac4c-c7de32890f11"
],
"Opportunities": [
"b8489cb6-a6fa-415f-b0e2-5eec5abc0a13",
"000574ba-cdf3-4ab9-b76e-dc4cc5c0dc3a"
]
}
},
{
"Id": "42cb2872-0349-4cf2-9f61-7f223d1155f9",
"ParentId": "7d9ebf77-ab62-4cd5-9bd8-cc270a4d1c2e",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"9097c14e-d1d6-4d98-beba-2044d6a03195",
"b1af1694-99f4-4b9f-8bb8-4cba8d848217"
],
"Companies": [
"cbc2aa38-ff58-4689-894a-781e73633a38",
"d8bf06c8-687d-4751-82ff-469b8faf4b80"
],
"Groups": [
"897eb630-a9e9-4577-9e88-7484e01f30a6",
"9004d5f2-8958-4ed6-ac4c-c7de32890f11"
],
"Opportunities": [
"b8489cb6-a6fa-415f-b0e2-5eec5abc0a13",
"000574ba-cdf3-4ab9-b76e-dc4cc5c0dc3a"
]
}
}
]