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": "494aa238-5951-41d7-919d-d9f940203479",
"ParentId": "18c5f109-90b1-457e-83e5-14654ea5269d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"117c2981-8364-4198-b246-b2636fdb1c56",
"98ed6e65-18c6-4eab-b88d-d6a1246744cc"
],
"Companies": [
"e0d78287-0172-4fe3-b091-70fbf87778ab",
"daf9dd6a-322b-414d-8706-02753d40f8f3"
],
"Groups": [
"90173a24-ec8a-4fbe-bf17-ba0b74d40c5b",
"98cf3e96-1393-4413-b645-030cb523a26e"
],
"Opportunities": [
"a99c85ac-071d-49bc-a99d-ef0cb1ba0807",
"0a65d9d3-b3fc-4282-83de-41c83db21a40"
]
}
},
{
"Id": "494aa238-5951-41d7-919d-d9f940203479",
"ParentId": "18c5f109-90b1-457e-83e5-14654ea5269d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"117c2981-8364-4198-b246-b2636fdb1c56",
"98ed6e65-18c6-4eab-b88d-d6a1246744cc"
],
"Companies": [
"e0d78287-0172-4fe3-b091-70fbf87778ab",
"daf9dd6a-322b-414d-8706-02753d40f8f3"
],
"Groups": [
"90173a24-ec8a-4fbe-bf17-ba0b74d40c5b",
"98cf3e96-1393-4413-b645-030cb523a26e"
],
"Opportunities": [
"a99c85ac-071d-49bc-a99d-ef0cb1ba0807",
"0a65d9d3-b3fc-4282-83de-41c83db21a40"
]
}
}
]