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": "61d7735c-50c8-4651-ae90-207930fe8985",
"ParentId": "c84d1607-b8e9-4ee7-abfe-9608230b231d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"f7e14c9f-6409-43de-adc3-f76b30986455",
"54fb6b15-c8b0-4fc3-805a-366bc1a64195"
],
"Companies": [
"bde76ad9-9621-4906-80a2-3c9969323d7b",
"8a727f50-75c1-4dde-9398-ac8ccf0c803c"
],
"Groups": [
"4b8c5603-0e8f-499a-8de6-bb952cf8746f",
"b668c9ba-94fb-4571-a49b-38748daea76a"
],
"Opportunities": [
"001f5207-a597-42cb-8e92-97942a077249",
"0a609667-c49a-428c-996f-02a9c104bb20"
]
}
},
{
"Id": "61d7735c-50c8-4651-ae90-207930fe8985",
"ParentId": "c84d1607-b8e9-4ee7-abfe-9608230b231d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"f7e14c9f-6409-43de-adc3-f76b30986455",
"54fb6b15-c8b0-4fc3-805a-366bc1a64195"
],
"Companies": [
"bde76ad9-9621-4906-80a2-3c9969323d7b",
"8a727f50-75c1-4dde-9398-ac8ccf0c803c"
],
"Groups": [
"4b8c5603-0e8f-499a-8de6-bb952cf8746f",
"b668c9ba-94fb-4571-a49b-38748daea76a"
],
"Opportunities": [
"001f5207-a597-42cb-8e92-97942a077249",
"0a609667-c49a-428c-996f-02a9c104bb20"
]
}
}
]