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": "faa4a56f-0e0b-4e9f-808f-12ea4e908670",
"ParentId": "b4f7c5e0-c3c8-417c-918b-84aecfabe2f2",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"f1ad40b5-f993-4e95-968d-563691189965",
"7d8d2d37-aa48-494c-8820-b5b018cdad04"
],
"Companies": [
"59e91335-5a43-480e-9d40-cb0f3a0cbd8e",
"38e5d58d-eb1f-41a5-88ea-ebc5e07e3865"
],
"Groups": [
"54c8fec5-3d17-4ac4-bde4-a7e87b94bb26",
"0479becb-c5c1-43ac-8b64-efd9619568f0"
],
"Opportunities": [
"328992ed-0ce0-4bf2-abcd-3224bebc017d",
"501f14d5-bd11-4db0-b7f0-cebb1afc98cc"
]
}
},
{
"Id": "faa4a56f-0e0b-4e9f-808f-12ea4e908670",
"ParentId": "b4f7c5e0-c3c8-417c-918b-84aecfabe2f2",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"f1ad40b5-f993-4e95-968d-563691189965",
"7d8d2d37-aa48-494c-8820-b5b018cdad04"
],
"Companies": [
"59e91335-5a43-480e-9d40-cb0f3a0cbd8e",
"38e5d58d-eb1f-41a5-88ea-ebc5e07e3865"
],
"Groups": [
"54c8fec5-3d17-4ac4-bde4-a7e87b94bb26",
"0479becb-c5c1-43ac-8b64-efd9619568f0"
],
"Opportunities": [
"328992ed-0ce0-4bf2-abcd-3224bebc017d",
"501f14d5-bd11-4db0-b7f0-cebb1afc98cc"
]
}
}
]