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": "70d8c5a2-5659-49b8-9676-7d4b05587128",
"ParentId": "9e75029a-65d8-4d3b-a72e-0d485406cf1d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"9a794c20-cfbb-458c-9634-c3cece2f301e",
"b9c38b3f-7638-4aee-a011-026c99df50ce"
],
"Companies": [
"7f62e9f5-74e4-45e4-930b-ab95dea30dec",
"c880a7dc-ff0f-4e9c-b6bb-e6d301f37891"
],
"Groups": [
"49dc13fb-ae4a-430f-b8b5-3167ce03ae9b",
"988840c4-887d-4502-b5bf-c78be25cded7"
],
"Opportunities": [
"02f091cb-9d8a-4d18-98da-896af55fd9ed",
"d7e2473e-ff1f-4908-8286-252b54d8f20a"
]
}
},
{
"Id": "70d8c5a2-5659-49b8-9676-7d4b05587128",
"ParentId": "9e75029a-65d8-4d3b-a72e-0d485406cf1d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"9a794c20-cfbb-458c-9634-c3cece2f301e",
"b9c38b3f-7638-4aee-a011-026c99df50ce"
],
"Companies": [
"7f62e9f5-74e4-45e4-930b-ab95dea30dec",
"c880a7dc-ff0f-4e9c-b6bb-e6d301f37891"
],
"Groups": [
"49dc13fb-ae4a-430f-b8b5-3167ce03ae9b",
"988840c4-887d-4502-b5bf-c78be25cded7"
],
"Opportunities": [
"02f091cb-9d8a-4d18-98da-896af55fd9ed",
"d7e2473e-ff1f-4908-8286-252b54d8f20a"
]
}
}
]