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": "6f0000da-820e-4966-b3b0-b4332fa06ed7",
"ParentId": "e6e7108d-871e-4f1f-ba43-e0f215f65eed",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"8e5ab5e4-16a7-4536-bd24-e0530687cb99",
"504ef771-082d-411a-83ed-f182f250d204"
],
"Companies": [
"3c7469ba-5ad4-4aa7-9f44-5e74b9f7ede9",
"1638ec49-f8d9-4ec4-8a11-fcdcf6cc704f"
],
"Groups": [
"fb80dcac-c11c-4324-9334-5c69883078cf",
"07d72df1-ee05-40b6-9ed6-f7157a136064"
],
"Opportunities": [
"611e0fd6-c1d6-44b2-a9d0-88d33b1b6923",
"efa0ff87-5239-4f9f-b82a-b30627283d25"
]
}
},
{
"Id": "6f0000da-820e-4966-b3b0-b4332fa06ed7",
"ParentId": "e6e7108d-871e-4f1f-ba43-e0f215f65eed",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"8e5ab5e4-16a7-4536-bd24-e0530687cb99",
"504ef771-082d-411a-83ed-f182f250d204"
],
"Companies": [
"3c7469ba-5ad4-4aa7-9f44-5e74b9f7ede9",
"1638ec49-f8d9-4ec4-8a11-fcdcf6cc704f"
],
"Groups": [
"fb80dcac-c11c-4324-9334-5c69883078cf",
"07d72df1-ee05-40b6-9ed6-f7157a136064"
],
"Opportunities": [
"611e0fd6-c1d6-44b2-a9d0-88d33b1b6923",
"efa0ff87-5239-4f9f-b82a-b30627283d25"
]
}
}
]