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": "e93636ec-1cdf-48bd-b9b5-e8a94fd98ef9",
"ParentId": "820c6420-97d2-4f1e-8291-f57eb95622d3",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"46d96749-8b8f-47f8-b6ad-830231ffdb3f",
"188aa1c7-4944-4c52-b48d-2c0f1698345d"
],
"Companies": [
"075b500e-83c9-4192-8871-b68a493df888",
"d1b65241-1089-4491-adf1-0613d22e44ee"
],
"Groups": [
"50d4c67c-8ecf-4280-b02f-67aa3c35335d",
"9223993b-8745-42d4-80eb-42d2de2c6448"
],
"Opportunities": [
"6ec79f50-1ef4-4945-a5eb-0629da387b5a",
"cc094174-2a7e-4341-b651-8a69a2d23361"
]
}
},
{
"Id": "e93636ec-1cdf-48bd-b9b5-e8a94fd98ef9",
"ParentId": "820c6420-97d2-4f1e-8291-f57eb95622d3",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"46d96749-8b8f-47f8-b6ad-830231ffdb3f",
"188aa1c7-4944-4c52-b48d-2c0f1698345d"
],
"Companies": [
"075b500e-83c9-4192-8871-b68a493df888",
"d1b65241-1089-4491-adf1-0613d22e44ee"
],
"Groups": [
"50d4c67c-8ecf-4280-b02f-67aa3c35335d",
"9223993b-8745-42d4-80eb-42d2de2c6448"
],
"Opportunities": [
"6ec79f50-1ef4-4945-a5eb-0629da387b5a",
"cc094174-2a7e-4341-b651-8a69a2d23361"
]
}
}
]