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": "931e087f-5ef8-415a-9f45-f52f4ebe12c6",
"ParentId": "1b24d159-ad11-465e-a80f-3235f00f8593",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"3ef3f993-acc8-4598-a352-201bf8e0f560",
"65c7cdbf-c227-439f-a361-bf74137a7b96"
],
"Companies": [
"594d5686-98f7-4586-849d-7a87692d4599",
"86d3401e-4402-4341-9ad4-951e3de9a939"
],
"Groups": [
"37d6790f-99c6-4513-a125-a60c60ec44c9",
"9a6144a5-8a7b-42ee-9564-dfb02dcd3aab"
],
"Opportunities": [
"546b0baa-0d6c-4c4a-90e5-96b300fb1521",
"87815fd6-4adb-428c-83d6-421ee0c6dda5"
]
}
},
{
"Id": "931e087f-5ef8-415a-9f45-f52f4ebe12c6",
"ParentId": "1b24d159-ad11-465e-a80f-3235f00f8593",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"3ef3f993-acc8-4598-a352-201bf8e0f560",
"65c7cdbf-c227-439f-a361-bf74137a7b96"
],
"Companies": [
"594d5686-98f7-4586-849d-7a87692d4599",
"86d3401e-4402-4341-9ad4-951e3de9a939"
],
"Groups": [
"37d6790f-99c6-4513-a125-a60c60ec44c9",
"9a6144a5-8a7b-42ee-9564-dfb02dcd3aab"
],
"Opportunities": [
"546b0baa-0d6c-4c4a-90e5-96b300fb1521",
"87815fd6-4adb-428c-83d6-421ee0c6dda5"
]
}
}
]