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": "1c934373-fe8f-46bb-a45a-fec3600123c7",
"ParentId": "e029c541-ee0d-48e1-a9be-1a8d86059558",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"b492a705-8970-49c1-a73a-54c1c057ae86",
"a01ba05d-7ebb-4f7f-9186-05082a86d274"
],
"Companies": [
"85898627-cdbe-47fe-8c1b-f8c7e7d13d5c",
"cefdb960-808c-4ca0-b51d-860614de8067"
],
"Groups": [
"44317f31-1e16-4af5-abe3-6f2630dfffa2",
"df5ced5a-31c8-492e-bc98-097ccc5dee3e"
],
"Opportunities": [
"4e73eddc-ce36-4c01-aba7-cca62aa907d2",
"270f2e96-b423-402c-a102-a37e7150b74c"
]
}
},
{
"Id": "1c934373-fe8f-46bb-a45a-fec3600123c7",
"ParentId": "e029c541-ee0d-48e1-a9be-1a8d86059558",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"b492a705-8970-49c1-a73a-54c1c057ae86",
"a01ba05d-7ebb-4f7f-9186-05082a86d274"
],
"Companies": [
"85898627-cdbe-47fe-8c1b-f8c7e7d13d5c",
"cefdb960-808c-4ca0-b51d-860614de8067"
],
"Groups": [
"44317f31-1e16-4af5-abe3-6f2630dfffa2",
"df5ced5a-31c8-492e-bc98-097ccc5dee3e"
],
"Opportunities": [
"4e73eddc-ce36-4c01-aba7-cca62aa907d2",
"270f2e96-b423-402c-a102-a37e7150b74c"
]
}
}
]