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": "62dde471-11f6-4eaf-9925-e8616d46affb",
"ParentId": "44943137-47e9-42ce-9fd0-b4d9890b6cb1",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"f95789e2-1831-47a0-9f38-8cc2a2cd1f63",
"cb8db636-8306-4a47-afe6-2585fc386b2e"
],
"Companies": [
"bbdca1c7-c664-4767-b7a5-2f328209baf6",
"72271ca3-2244-4303-a11e-25029d6a7aa1"
],
"Groups": [
"52eb65b2-cb0e-4848-b1ea-3670931c8eed",
"1d39b1d1-184a-48b4-bd27-6b900e7c6b6b"
],
"Opportunities": [
"80666dba-890b-40cd-8ec7-b565e5330d3b",
"4f64e569-0b3c-4dc3-835c-0ba4f4293b7d"
]
}
},
{
"Id": "62dde471-11f6-4eaf-9925-e8616d46affb",
"ParentId": "44943137-47e9-42ce-9fd0-b4d9890b6cb1",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"f95789e2-1831-47a0-9f38-8cc2a2cd1f63",
"cb8db636-8306-4a47-afe6-2585fc386b2e"
],
"Companies": [
"bbdca1c7-c664-4767-b7a5-2f328209baf6",
"72271ca3-2244-4303-a11e-25029d6a7aa1"
],
"Groups": [
"52eb65b2-cb0e-4848-b1ea-3670931c8eed",
"1d39b1d1-184a-48b4-bd27-6b900e7c6b6b"
],
"Opportunities": [
"80666dba-890b-40cd-8ec7-b565e5330d3b",
"4f64e569-0b3c-4dc3-835c-0ba4f4293b7d"
]
}
}
]