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": "f35dd89e-65eb-42bb-94fe-af50b55121da",
"ParentId": "d5caf13f-8cb0-4d84-8b7c-a6cf0053b0de",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"5f0a8a18-8b37-4584-a3b2-13bb0730b1af",
"ccacbbac-fffc-4398-857e-e3c2aa47b699"
],
"Companies": [
"818b7ee8-2c4e-4e56-85fa-432b509c591f",
"ebe615c9-07ac-436c-a8be-c1e68cd2c845"
],
"Groups": [
"c0fa0412-5b02-49c2-99cb-682f601726db",
"e3057b5b-c07d-44fa-aaf3-a929744731d3"
],
"Opportunities": [
"82229922-5536-4063-9333-e3aa318b7903",
"659046a9-3958-40a5-ba15-d4728cdc999f"
]
}
},
{
"Id": "f35dd89e-65eb-42bb-94fe-af50b55121da",
"ParentId": "d5caf13f-8cb0-4d84-8b7c-a6cf0053b0de",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"5f0a8a18-8b37-4584-a3b2-13bb0730b1af",
"ccacbbac-fffc-4398-857e-e3c2aa47b699"
],
"Companies": [
"818b7ee8-2c4e-4e56-85fa-432b509c591f",
"ebe615c9-07ac-436c-a8be-c1e68cd2c845"
],
"Groups": [
"c0fa0412-5b02-49c2-99cb-682f601726db",
"e3057b5b-c07d-44fa-aaf3-a929744731d3"
],
"Opportunities": [
"82229922-5536-4063-9333-e3aa318b7903",
"659046a9-3958-40a5-ba15-d4728cdc999f"
]
}
}
]