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": "e6e2468c-0186-45e0-94dc-ee1dde09e706",
"ParentId": "6409e076-0710-4df6-a4a2-22dae6113304",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"12dff44b-5b04-4379-a495-ed351de45afd",
"bd820a5d-6d28-4305-8f47-a19dacdcdc02"
],
"Companies": [
"0c1bdb44-31fd-4fee-88c3-d256cdd9c345",
"b1b178ee-b465-40fc-a7bf-9ad76426ce10"
],
"Groups": [
"90a7d25c-93db-44a8-be88-c3d58e385d94",
"92b22465-9b25-4051-b7c9-f1618cc32274"
],
"Opportunities": [
"e8c9299e-aa04-465a-8196-7079703cc0eb",
"1f269de6-092c-4eb1-bf7a-5a45d5a01f1d"
]
}
},
{
"Id": "e6e2468c-0186-45e0-94dc-ee1dde09e706",
"ParentId": "6409e076-0710-4df6-a4a2-22dae6113304",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"12dff44b-5b04-4379-a495-ed351de45afd",
"bd820a5d-6d28-4305-8f47-a19dacdcdc02"
],
"Companies": [
"0c1bdb44-31fd-4fee-88c3-d256cdd9c345",
"b1b178ee-b465-40fc-a7bf-9ad76426ce10"
],
"Groups": [
"90a7d25c-93db-44a8-be88-c3d58e385d94",
"92b22465-9b25-4051-b7c9-f1618cc32274"
],
"Opportunities": [
"e8c9299e-aa04-465a-8196-7079703cc0eb",
"1f269de6-092c-4eb1-bf7a-5a45d5a01f1d"
]
}
}
]