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": "bac45fe7-00ba-48a6-af4f-185e22eacd45",
"ParentId": "c2d5aafa-06d9-4181-be2c-854137c0b459",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"6d5e4589-5244-4f1b-88a6-f843b8faa6a8",
"80378304-4c5d-4f23-b545-c15a08fe1da8"
],
"Companies": [
"fd19ac5a-7f85-427a-bc75-350b4af48273",
"bce1b157-45e2-42a3-bc97-430fc6f50e51"
],
"Groups": [
"069ea073-765f-4126-a8ba-da2529e1f890",
"bbf336e5-4f37-43ba-a492-bdefe3ffec3e"
],
"Opportunities": [
"688b0af8-7b38-4b36-ab91-56d8d30be365",
"93e9c005-68fe-4838-8bb0-2bbc25c5fd2f"
]
}
},
{
"Id": "bac45fe7-00ba-48a6-af4f-185e22eacd45",
"ParentId": "c2d5aafa-06d9-4181-be2c-854137c0b459",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"6d5e4589-5244-4f1b-88a6-f843b8faa6a8",
"80378304-4c5d-4f23-b545-c15a08fe1da8"
],
"Companies": [
"fd19ac5a-7f85-427a-bc75-350b4af48273",
"bce1b157-45e2-42a3-bc97-430fc6f50e51"
],
"Groups": [
"069ea073-765f-4126-a8ba-da2529e1f890",
"bbf336e5-4f37-43ba-a492-bdefe3ffec3e"
],
"Opportunities": [
"688b0af8-7b38-4b36-ab91-56d8d30be365",
"93e9c005-68fe-4838-8bb0-2bbc25c5fd2f"
]
}
}
]