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": "bfac4995-2217-4a44-b38b-fe4c1fb54034",
"ParentId": "bb9e049e-cff8-4ab0-9c40-80fb09357dd3",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"1a24c432-4320-4478-a74e-8392f716a010",
"05cf2d4f-f538-4482-90fe-023c907e7618"
],
"Companies": [
"8b98599d-8333-417b-b725-b427a59b01d5",
"2b1cc1a0-98d4-4b86-ac20-f23f928b9380"
],
"Groups": [
"49bace55-82ef-4a1c-8e72-c8a29ac02c84",
"e1ff533d-2c00-4eb4-8e38-5615681ab2f0"
],
"Opportunities": [
"385f7c0a-5431-495e-988f-b4b110c36969",
"3e67a008-90a1-482b-87e8-7e4cebf3d1e1"
]
}
},
{
"Id": "bfac4995-2217-4a44-b38b-fe4c1fb54034",
"ParentId": "bb9e049e-cff8-4ab0-9c40-80fb09357dd3",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"1a24c432-4320-4478-a74e-8392f716a010",
"05cf2d4f-f538-4482-90fe-023c907e7618"
],
"Companies": [
"8b98599d-8333-417b-b725-b427a59b01d5",
"2b1cc1a0-98d4-4b86-ac20-f23f928b9380"
],
"Groups": [
"49bace55-82ef-4a1c-8e72-c8a29ac02c84",
"e1ff533d-2c00-4eb4-8e38-5615681ab2f0"
],
"Opportunities": [
"385f7c0a-5431-495e-988f-b4b110c36969",
"3e67a008-90a1-482b-87e8-7e4cebf3d1e1"
]
}
}
]