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": "8da7a67b-f880-46cf-8261-a739c9b63153",
"ParentId": "0a62a3d9-1133-4df0-ad54-58b945811646",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"3e09cb12-bbb4-41dd-b030-df3702f6c0be",
"152cb8b6-e810-4408-8f47-4ecc0c469ce3"
],
"Companies": [
"e13e0fb0-986c-44c5-82f6-29d7c209179e",
"faf17369-46c3-4913-b694-7958455acbc2"
],
"Groups": [
"69a82930-9937-4c05-beb8-ccaebd53df3f",
"f7c529e4-dc17-4b0b-ac85-38d6302ab52a"
],
"Opportunities": [
"a0393203-03be-4ffb-adc4-1e2cb2334409",
"b006987a-9b9c-4b3e-a376-cc7135fc2b44"
]
}
},
{
"Id": "8da7a67b-f880-46cf-8261-a739c9b63153",
"ParentId": "0a62a3d9-1133-4df0-ad54-58b945811646",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"3e09cb12-bbb4-41dd-b030-df3702f6c0be",
"152cb8b6-e810-4408-8f47-4ecc0c469ce3"
],
"Companies": [
"e13e0fb0-986c-44c5-82f6-29d7c209179e",
"faf17369-46c3-4913-b694-7958455acbc2"
],
"Groups": [
"69a82930-9937-4c05-beb8-ccaebd53df3f",
"f7c529e4-dc17-4b0b-ac85-38d6302ab52a"
],
"Opportunities": [
"a0393203-03be-4ffb-adc4-1e2cb2334409",
"b006987a-9b9c-4b3e-a376-cc7135fc2b44"
]
}
}
]