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": "452639a1-e0fe-4507-938b-709dfb557ae5",
"ParentId": "927a053d-66a6-4ddb-b7a0-8ef912cb7d71",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"a0484334-ac53-4b46-b8c8-4fa5fced1231",
"33847409-5b95-4ae2-bbe0-2d416e857649"
],
"Companies": [
"0c149ed1-4eeb-422f-af46-e5dd02a8de13",
"7108aa71-73a8-44b8-bf90-6e456fd3388f"
],
"Groups": [
"a019f013-4511-4bae-ae11-176b1e2d3a9a",
"d11f4261-023e-4b22-bf0e-d19900dbbb67"
],
"Opportunities": [
"db5c7c82-2199-4209-8088-e54600db2b46",
"035fc19d-e1d9-4637-95b2-f04406f18d66"
]
}
},
{
"Id": "452639a1-e0fe-4507-938b-709dfb557ae5",
"ParentId": "927a053d-66a6-4ddb-b7a0-8ef912cb7d71",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"a0484334-ac53-4b46-b8c8-4fa5fced1231",
"33847409-5b95-4ae2-bbe0-2d416e857649"
],
"Companies": [
"0c149ed1-4eeb-422f-af46-e5dd02a8de13",
"7108aa71-73a8-44b8-bf90-6e456fd3388f"
],
"Groups": [
"a019f013-4511-4bae-ae11-176b1e2d3a9a",
"d11f4261-023e-4b22-bf0e-d19900dbbb67"
],
"Opportunities": [
"db5c7c82-2199-4209-8088-e54600db2b46",
"035fc19d-e1d9-4637-95b2-f04406f18d66"
]
}
}
]