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": "b68514d5-0309-4eeb-878f-2085cff84511",
"ParentId": "d070c9b1-3ffe-467c-8193-c25033ba7f90",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"03219151-8f12-40f9-bb45-04bab35b96f9",
"52cfd8dc-4f52-405f-9a17-436fa128d92e"
],
"Companies": [
"07161165-1051-4cad-acb5-2b2e0925f199",
"6fd0588e-fe8e-4c97-93a8-61307c8a57b6"
],
"Groups": [
"b41b71b2-d109-4444-8139-2e3e5dc54dab",
"a61b5aaa-a2a7-4db1-8c35-1825abd47ab2"
],
"Opportunities": [
"4353a61e-98c5-49a4-bb93-2706423d2a2c",
"64f6e934-7dc4-44c4-be8d-8a8eaeb66cab"
]
}
},
{
"Id": "b68514d5-0309-4eeb-878f-2085cff84511",
"ParentId": "d070c9b1-3ffe-467c-8193-c25033ba7f90",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"03219151-8f12-40f9-bb45-04bab35b96f9",
"52cfd8dc-4f52-405f-9a17-436fa128d92e"
],
"Companies": [
"07161165-1051-4cad-acb5-2b2e0925f199",
"6fd0588e-fe8e-4c97-93a8-61307c8a57b6"
],
"Groups": [
"b41b71b2-d109-4444-8139-2e3e5dc54dab",
"a61b5aaa-a2a7-4db1-8c35-1825abd47ab2"
],
"Opportunities": [
"4353a61e-98c5-49a4-bb93-2706423d2a2c",
"64f6e934-7dc4-44c4-be8d-8a8eaeb66cab"
]
}
}
]