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": "75454f5e-9ad4-4b08-aaa6-a844633910f8",
"ParentId": "48917062-f1db-40df-b1e2-08b3e142f6ec",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"da3636fc-10d5-472a-895f-7560dec88541",
"18037963-9327-4d9b-b7b4-b8b8204ac1b0"
],
"Companies": [
"a818cb53-809c-4129-83a9-f063c5a7cc66",
"061fdb8a-ffd3-4824-9f6f-6a65f08c4574"
],
"Groups": [
"82d16fb6-62aa-4dd9-b442-cba5f344cb48",
"0d613141-6da8-4ca6-9134-8ce4a3deb6fe"
],
"Opportunities": [
"709cf623-9e34-4856-87aa-436aa087265e",
"3ee27784-86ae-4545-8d71-3af4a8b6ea9b"
]
}
},
{
"Id": "75454f5e-9ad4-4b08-aaa6-a844633910f8",
"ParentId": "48917062-f1db-40df-b1e2-08b3e142f6ec",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"da3636fc-10d5-472a-895f-7560dec88541",
"18037963-9327-4d9b-b7b4-b8b8204ac1b0"
],
"Companies": [
"a818cb53-809c-4129-83a9-f063c5a7cc66",
"061fdb8a-ffd3-4824-9f6f-6a65f08c4574"
],
"Groups": [
"82d16fb6-62aa-4dd9-b442-cba5f344cb48",
"0d613141-6da8-4ca6-9134-8ce4a3deb6fe"
],
"Opportunities": [
"709cf623-9e34-4856-87aa-436aa087265e",
"3ee27784-86ae-4545-8d71-3af4a8b6ea9b"
]
}
}
]