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": "26b427ba-b5d6-46ef-970c-9076639da385",
"ParentId": "2ddeb283-4a1d-4e74-a46d-12f4b25e4a7e",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"1cb317d1-65ed-4dcb-ade6-65729e3394af",
"3b9c5607-46b8-4893-9a5c-685c2ee9daa5"
],
"Companies": [
"a021aa9b-9b23-43ed-87eb-26051dadad2a",
"a3af232e-2934-44ea-a652-b9cd6483432d"
],
"Groups": [
"5e3ea62e-7e0d-40c2-b47a-aaeac7189c2a",
"d76498ac-1d9f-448f-9224-1bd3fe65cb84"
],
"Opportunities": [
"b4cb0bc3-a8c0-41f4-b3ed-4b97b327f451",
"c21a8c25-1311-4aeb-99c9-ec37cdce88af"
]
}
},
{
"Id": "26b427ba-b5d6-46ef-970c-9076639da385",
"ParentId": "2ddeb283-4a1d-4e74-a46d-12f4b25e4a7e",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"1cb317d1-65ed-4dcb-ade6-65729e3394af",
"3b9c5607-46b8-4893-9a5c-685c2ee9daa5"
],
"Companies": [
"a021aa9b-9b23-43ed-87eb-26051dadad2a",
"a3af232e-2934-44ea-a652-b9cd6483432d"
],
"Groups": [
"5e3ea62e-7e0d-40c2-b47a-aaeac7189c2a",
"d76498ac-1d9f-448f-9224-1bd3fe65cb84"
],
"Opportunities": [
"b4cb0bc3-a8c0-41f4-b3ed-4b97b327f451",
"c21a8c25-1311-4aeb-99c9-ec37cdce88af"
]
}
}
]