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": "ac8c300e-83bf-4725-81d1-1c0d930db15f",
"ParentId": "5f4bbcb0-4190-4983-a5a6-40735dc87903",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"bd6f2daf-ecf0-429b-9336-200496cb739f",
"449afe6c-d2bd-4281-9bdb-f77660076247"
],
"Companies": [
"8766bff8-5ef0-4354-874a-47ffca37ed90",
"9ef1324f-f90e-4e30-a2d9-16ae70639055"
],
"Groups": [
"b56d618e-12d4-4c97-aaca-d9e239307952",
"72c25f06-c063-4495-8f9a-253f610510a9"
],
"Opportunities": [
"b70ec74d-18be-4c06-a87f-225b2810f4b5",
"38d56f89-5377-49fc-ae8a-fcb97557fe36"
]
}
},
{
"Id": "ac8c300e-83bf-4725-81d1-1c0d930db15f",
"ParentId": "5f4bbcb0-4190-4983-a5a6-40735dc87903",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"bd6f2daf-ecf0-429b-9336-200496cb739f",
"449afe6c-d2bd-4281-9bdb-f77660076247"
],
"Companies": [
"8766bff8-5ef0-4354-874a-47ffca37ed90",
"9ef1324f-f90e-4e30-a2d9-16ae70639055"
],
"Groups": [
"b56d618e-12d4-4c97-aaca-d9e239307952",
"72c25f06-c063-4495-8f9a-253f610510a9"
],
"Opportunities": [
"b70ec74d-18be-4c06-a87f-225b2810f4b5",
"38d56f89-5377-49fc-ae8a-fcb97557fe36"
]
}
}
]