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": "a1a85401-02d8-45fd-ab27-2f9e6adef23f",
"ParentId": "3c212f29-e990-47d8-b4ce-72fde19ba200",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"3f35984f-6c9f-4dc9-941c-4212d12b48b9",
"47bd50b4-8c7e-48df-8d62-17e7af646ea5"
],
"Companies": [
"783d447a-36c7-4e1a-a9b2-0a75b5845889",
"7b9be534-5dc3-4efe-88dc-83da1a17da5f"
],
"Groups": [
"5366827e-cecf-4800-a548-14abf31b6c1b",
"8d806e6a-aee3-4f41-81e9-dd900b5e1b96"
],
"Opportunities": [
"680c9d21-a334-41eb-9529-ad362388f8bf",
"b4ac664b-c16b-4dcf-a209-2836c9afb0f1"
]
}
},
{
"Id": "a1a85401-02d8-45fd-ab27-2f9e6adef23f",
"ParentId": "3c212f29-e990-47d8-b4ce-72fde19ba200",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"3f35984f-6c9f-4dc9-941c-4212d12b48b9",
"47bd50b4-8c7e-48df-8d62-17e7af646ea5"
],
"Companies": [
"783d447a-36c7-4e1a-a9b2-0a75b5845889",
"7b9be534-5dc3-4efe-88dc-83da1a17da5f"
],
"Groups": [
"5366827e-cecf-4800-a548-14abf31b6c1b",
"8d806e6a-aee3-4f41-81e9-dd900b5e1b96"
],
"Opportunities": [
"680c9d21-a334-41eb-9529-ad362388f8bf",
"b4ac664b-c16b-4dcf-a209-2836c9afb0f1"
]
}
}
]