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": "74031786-bcaa-425d-bc37-f4989e79de23",
"ParentId": "b12766e2-0808-4e5b-ba98-f92e1e683240",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"ec49ab8d-9545-4f5e-93be-cf097bef238f",
"6a5ab52e-2f38-45ba-89d4-4788d3404f8a"
],
"Companies": [
"ce4492ca-8939-4011-84aa-bad75025d293",
"a3505b8d-dc9d-4695-a82e-f4a7e588838b"
],
"Groups": [
"bab80d6e-5076-4729-a149-44c55fd38923",
"afaffa36-902c-440a-81d4-24fb9d70e632"
],
"Opportunities": [
"f639d9dc-dcaf-4a72-a50b-57d9902350fa",
"d59dad20-eb99-4b0e-9632-466b5e5fb119"
]
}
},
{
"Id": "74031786-bcaa-425d-bc37-f4989e79de23",
"ParentId": "b12766e2-0808-4e5b-ba98-f92e1e683240",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"ec49ab8d-9545-4f5e-93be-cf097bef238f",
"6a5ab52e-2f38-45ba-89d4-4788d3404f8a"
],
"Companies": [
"ce4492ca-8939-4011-84aa-bad75025d293",
"a3505b8d-dc9d-4695-a82e-f4a7e588838b"
],
"Groups": [
"bab80d6e-5076-4729-a149-44c55fd38923",
"afaffa36-902c-440a-81d4-24fb9d70e632"
],
"Opportunities": [
"f639d9dc-dcaf-4a72-a50b-57d9902350fa",
"d59dad20-eb99-4b0e-9632-466b5e5fb119"
]
}
}
]