GET api/CustomTables?customTableName={customTableName}&mainEntityType={mainEntityType}&entityId={entityId}
Get the linked custom table sub entities for a Contact, Company, Group, or Opportunity. Supported Headers: Filter, Sort, SortDesc, SelectField
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| customTableName |
Custom Table Name |
string |
Required |
| mainEntityType |
The main entity type. This is the table the custom record is linked to. |
MainEntityType |
Required |
| entityId |
Main Entity Id. |
globally unique identifier |
Required |
Body Parameters
None.
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": "8798e39f-a0be-41f9-88ba-d4c33745d8f3",
"ParentId": "93c776e2-17dd-4e8e-a0de-0e161dc3d590",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"9b6fa7e1-9b6e-45d7-9397-04c660169559",
"836cf726-f204-4947-a838-c6ed350de82b"
],
"Companies": [
"1f7de144-d202-4e55-8a26-0bb382bff21e",
"1053446c-ed8c-44dc-b13f-6a1df1e6eafd"
],
"Groups": [
"92b5a679-5530-4bac-85da-a94b19eaa553",
"3f2bd58a-a5e8-4bf0-8307-fe3f493cc611"
],
"Opportunities": [
"20c35ab1-8010-4327-bf05-2249ae03385f",
"3b7cef5a-8212-4a3f-9510-99061595eb66"
]
}
},
{
"Id": "8798e39f-a0be-41f9-88ba-d4c33745d8f3",
"ParentId": "93c776e2-17dd-4e8e-a0de-0e161dc3d590",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"9b6fa7e1-9b6e-45d7-9397-04c660169559",
"836cf726-f204-4947-a838-c6ed350de82b"
],
"Companies": [
"1f7de144-d202-4e55-8a26-0bb382bff21e",
"1053446c-ed8c-44dc-b13f-6a1df1e6eafd"
],
"Groups": [
"92b5a679-5530-4bac-85da-a94b19eaa553",
"3f2bd58a-a5e8-4bf0-8307-fe3f493cc611"
],
"Opportunities": [
"20c35ab1-8010-4327-bf05-2249ae03385f",
"3b7cef5a-8212-4a3f-9510-99061595eb66"
]
}
}
]