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": "bad5e3e4-a675-4c25-bbd7-a693e1c1d4dc",
"ParentId": "5c054ec0-cc50-4bee-aebb-f0f91ff83f14",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"d40caf96-7ce4-476e-ad04-4c2eb104f4f4",
"987cb4a2-8a71-4b70-a150-22cd3d9e398c"
],
"Companies": [
"304359f7-23db-482a-b9b2-0b414658313a",
"35fdb41d-d437-426e-9e9f-3a32ba6abc7b"
],
"Groups": [
"db0716b4-fd56-4595-946b-42c1b53c2a1f",
"0bca337a-0ec0-4b2f-8e73-071e2095d24b"
],
"Opportunities": [
"39ba225f-590c-4145-b5a4-5d1a26a9d7c1",
"af9e94f9-cd87-4130-a824-a21384ae2966"
]
}
},
{
"Id": "bad5e3e4-a675-4c25-bbd7-a693e1c1d4dc",
"ParentId": "5c054ec0-cc50-4bee-aebb-f0f91ff83f14",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"d40caf96-7ce4-476e-ad04-4c2eb104f4f4",
"987cb4a2-8a71-4b70-a150-22cd3d9e398c"
],
"Companies": [
"304359f7-23db-482a-b9b2-0b414658313a",
"35fdb41d-d437-426e-9e9f-3a32ba6abc7b"
],
"Groups": [
"db0716b4-fd56-4595-946b-42c1b53c2a1f",
"0bca337a-0ec0-4b2f-8e73-071e2095d24b"
],
"Opportunities": [
"39ba225f-590c-4145-b5a4-5d1a26a9d7c1",
"af9e94f9-cd87-4130-a824-a21384ae2966"
]
}
}
]