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": "ace4889b-cef9-4224-a98a-9cf3b366cf04",
"ParentId": "49e489aa-34e6-42b8-8c9c-7f525434b262",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"bc193882-280e-4c4c-9d5a-97217da580a0",
"068ec9c5-ec38-4842-bf09-225d7206bd70"
],
"Companies": [
"d1e905c9-e62e-415f-842b-4e4eb9faef92",
"82215b4c-b972-42ed-8528-b51f124684ee"
],
"Groups": [
"61c278d0-8d82-4c15-a058-07f078bf5873",
"0862ae8f-60ec-47b1-aa5c-73ca808c9f0f"
],
"Opportunities": [
"4e5149a0-567c-40a0-a15f-8ea635ad9e02",
"b6efe3c1-8a3f-44e8-ad7a-dcaf29a0945c"
]
}
},
{
"Id": "ace4889b-cef9-4224-a98a-9cf3b366cf04",
"ParentId": "49e489aa-34e6-42b8-8c9c-7f525434b262",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"bc193882-280e-4c4c-9d5a-97217da580a0",
"068ec9c5-ec38-4842-bf09-225d7206bd70"
],
"Companies": [
"d1e905c9-e62e-415f-842b-4e4eb9faef92",
"82215b4c-b972-42ed-8528-b51f124684ee"
],
"Groups": [
"61c278d0-8d82-4c15-a058-07f078bf5873",
"0862ae8f-60ec-47b1-aa5c-73ca808c9f0f"
],
"Opportunities": [
"4e5149a0-567c-40a0-a15f-8ea635ad9e02",
"b6efe3c1-8a3f-44e8-ad7a-dcaf29a0945c"
]
}
}
]