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": "8e199cf7-7f78-40e2-bf07-25eafacb5c5d",
"ParentId": "3ee62ce0-d055-4648-9366-47bde9bd0b9a",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"c0b58931-271c-4617-afef-b913c7a95f76",
"8d77990c-b3e8-4832-8511-e3c28877a17c"
],
"Companies": [
"2b3e4617-abe1-4d14-8852-8c66acb3f351",
"e8fab035-953e-4e31-b1d0-cc5578f10055"
],
"Groups": [
"07aae896-696f-4839-ae9c-e67f43f85d77",
"e365c40b-47af-485d-82ca-95e4fbed533a"
],
"Opportunities": [
"154562b2-8681-422d-bdc1-8e66b3920ab9",
"8135307b-f47d-40e3-bf9b-340bac342c0c"
]
}
},
{
"Id": "8e199cf7-7f78-40e2-bf07-25eafacb5c5d",
"ParentId": "3ee62ce0-d055-4648-9366-47bde9bd0b9a",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"c0b58931-271c-4617-afef-b913c7a95f76",
"8d77990c-b3e8-4832-8511-e3c28877a17c"
],
"Companies": [
"2b3e4617-abe1-4d14-8852-8c66acb3f351",
"e8fab035-953e-4e31-b1d0-cc5578f10055"
],
"Groups": [
"07aae896-696f-4839-ae9c-e67f43f85d77",
"e365c40b-47af-485d-82ca-95e4fbed533a"
],
"Opportunities": [
"154562b2-8681-422d-bdc1-8e66b3920ab9",
"8135307b-f47d-40e3-bf9b-340bac342c0c"
]
}
}
]