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": "d9218dcd-40d9-4256-8616-df71908448d2",
"ParentId": "d50f4f1b-6dfe-4c15-91aa-ec219d386239",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"8b56dc18-97e2-41b8-85d0-e589b8ab8ef9",
"3652f9b4-6016-4477-927a-6c2815b79203"
],
"Companies": [
"ef93a74e-96f6-4082-999f-7532dfc69e41",
"ff401cfe-6d4e-40e1-8a1e-231f6b422f3e"
],
"Groups": [
"f55db7fe-57f9-4ec9-ae77-24500b904fcd",
"504e5b0f-42ff-457b-a4a2-c5895b552959"
],
"Opportunities": [
"c04c7d96-74fb-4441-b185-dbdaf5156443",
"2641b9a9-1d9a-489a-b8fb-6a0056c8766e"
]
}
},
{
"Id": "d9218dcd-40d9-4256-8616-df71908448d2",
"ParentId": "d50f4f1b-6dfe-4c15-91aa-ec219d386239",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"8b56dc18-97e2-41b8-85d0-e589b8ab8ef9",
"3652f9b4-6016-4477-927a-6c2815b79203"
],
"Companies": [
"ef93a74e-96f6-4082-999f-7532dfc69e41",
"ff401cfe-6d4e-40e1-8a1e-231f6b422f3e"
],
"Groups": [
"f55db7fe-57f9-4ec9-ae77-24500b904fcd",
"504e5b0f-42ff-457b-a4a2-c5895b552959"
],
"Opportunities": [
"c04c7d96-74fb-4441-b185-dbdaf5156443",
"2641b9a9-1d9a-489a-b8fb-6a0056c8766e"
]
}
}
]