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": "f14a52ef-3d50-4c54-b11b-c6d12c0133ef",
"ParentId": "59acaf99-2994-45e7-926c-36101cee95ad",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"98ce2306-4c3c-4de5-b06e-70861b78d8a9",
"7789787b-13cb-4096-93f2-4d03061e9136"
],
"Companies": [
"6ed4016b-84bd-43e4-9ed7-b3a4f398ffd4",
"22ac50ff-079c-4087-8d7c-4ff31837b0a7"
],
"Groups": [
"52fddc04-000b-4391-957c-990011d01c91",
"9d0ace18-6a3c-4163-bb46-a9406f7d823d"
],
"Opportunities": [
"6756802d-d9f9-499b-8a3f-8e6eb9ae95f0",
"76fbac03-4c30-47c0-95fa-4dd40b1dcf3b"
]
}
},
{
"Id": "f14a52ef-3d50-4c54-b11b-c6d12c0133ef",
"ParentId": "59acaf99-2994-45e7-926c-36101cee95ad",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"98ce2306-4c3c-4de5-b06e-70861b78d8a9",
"7789787b-13cb-4096-93f2-4d03061e9136"
],
"Companies": [
"6ed4016b-84bd-43e4-9ed7-b3a4f398ffd4",
"22ac50ff-079c-4087-8d7c-4ff31837b0a7"
],
"Groups": [
"52fddc04-000b-4391-957c-990011d01c91",
"9d0ace18-6a3c-4163-bb46-a9406f7d823d"
],
"Opportunities": [
"6756802d-d9f9-499b-8a3f-8e6eb9ae95f0",
"76fbac03-4c30-47c0-95fa-4dd40b1dcf3b"
]
}
}
]