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": "36a64432-332b-4b16-a504-6179c4453758",
"ParentId": "a3c865eb-d871-4ad0-93fe-ddd5794f8cc4",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"b57ef08f-0fbc-4f65-b563-f5ee81862017",
"7d4b30ef-34db-42e1-b08d-347a8007f875"
],
"Companies": [
"25242efc-305d-4d03-b1aa-eb687d960757",
"e998dbde-52a7-4faf-8c57-dc4f81dd8707"
],
"Groups": [
"60f93c88-0516-4924-90af-2c813a07e349",
"e8a51fb2-a8da-45e3-9ba1-d3ceff9ab2a5"
],
"Opportunities": [
"eb2254e2-39f4-4eea-a8c5-664b4ed30ddc",
"8530653d-afbe-4340-814c-f3ed6396d9f6"
]
}
},
{
"Id": "36a64432-332b-4b16-a504-6179c4453758",
"ParentId": "a3c865eb-d871-4ad0-93fe-ddd5794f8cc4",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"b57ef08f-0fbc-4f65-b563-f5ee81862017",
"7d4b30ef-34db-42e1-b08d-347a8007f875"
],
"Companies": [
"25242efc-305d-4d03-b1aa-eb687d960757",
"e998dbde-52a7-4faf-8c57-dc4f81dd8707"
],
"Groups": [
"60f93c88-0516-4924-90af-2c813a07e349",
"e8a51fb2-a8da-45e3-9ba1-d3ceff9ab2a5"
],
"Opportunities": [
"eb2254e2-39f4-4eea-a8c5-664b4ed30ddc",
"8530653d-afbe-4340-814c-f3ed6396d9f6"
]
}
}
]