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": "64e56899-0423-45b7-a4c3-c5c375476997",
"ParentId": "64a76a80-da8d-40f4-b7e3-0549495b8706",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"acabece8-a587-4d9f-951b-d0d404652234",
"492384f6-5a0a-48fa-b7e9-cca21561b528"
],
"Companies": [
"2d33d148-aa5b-47fb-a0c8-61102f7b64b4",
"a7907974-2b76-47ac-a7cf-e490b987a48f"
],
"Groups": [
"93a96edb-8d7a-41bd-9756-101187cbdf65",
"ebd945c1-2f04-41ca-b846-91d129a63e29"
],
"Opportunities": [
"21553af7-1736-4ff1-902e-3ce2b4834b90",
"ce888f33-58c4-48c8-9573-722df2703644"
]
}
},
{
"Id": "64e56899-0423-45b7-a4c3-c5c375476997",
"ParentId": "64a76a80-da8d-40f4-b7e3-0549495b8706",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"acabece8-a587-4d9f-951b-d0d404652234",
"492384f6-5a0a-48fa-b7e9-cca21561b528"
],
"Companies": [
"2d33d148-aa5b-47fb-a0c8-61102f7b64b4",
"a7907974-2b76-47ac-a7cf-e490b987a48f"
],
"Groups": [
"93a96edb-8d7a-41bd-9756-101187cbdf65",
"ebd945c1-2f04-41ca-b846-91d129a63e29"
],
"Opportunities": [
"21553af7-1736-4ff1-902e-3ce2b4834b90",
"ce888f33-58c4-48c8-9573-722df2703644"
]
}
}
]