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": "edc3328d-53a9-41d0-ac63-5c8dcb094859",
"ParentId": "e3afdd5e-4989-4dfb-85ce-3c2682d64b05",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"808a0be6-60cc-4b2e-827c-269fb535f82f",
"5287ff82-b7c2-40ad-a0ab-1959d83ec697"
],
"Companies": [
"5ece8aee-6c0f-4874-8259-498de727a119",
"85ea1606-db5b-472c-890d-3f9edff58d09"
],
"Groups": [
"6777e1f2-d777-4166-9db3-39bb800348d1",
"a841e577-7f67-4cd7-a728-acfaffc98895"
],
"Opportunities": [
"86ae2f48-24a4-4047-bd69-da860f95de90",
"fdf07a1f-8d65-4b53-a392-c8ebaf27b4e6"
]
}
},
{
"Id": "edc3328d-53a9-41d0-ac63-5c8dcb094859",
"ParentId": "e3afdd5e-4989-4dfb-85ce-3c2682d64b05",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"808a0be6-60cc-4b2e-827c-269fb535f82f",
"5287ff82-b7c2-40ad-a0ab-1959d83ec697"
],
"Companies": [
"5ece8aee-6c0f-4874-8259-498de727a119",
"85ea1606-db5b-472c-890d-3f9edff58d09"
],
"Groups": [
"6777e1f2-d777-4166-9db3-39bb800348d1",
"a841e577-7f67-4cd7-a728-acfaffc98895"
],
"Opportunities": [
"86ae2f48-24a4-4047-bd69-da860f95de90",
"fdf07a1f-8d65-4b53-a392-c8ebaf27b4e6"
]
}
}
]