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": "2592ed6d-d984-4cec-b6a3-50cf6d0e4f7d",
"ParentId": "c00e5a2c-108c-42f5-af92-bbc26a002e71",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"2065d784-0998-4500-8a24-84e555b10d3e",
"0572b7cc-0f47-4ba5-a994-bd7bb7d53b12"
],
"Companies": [
"3387421b-bdfb-4aac-ba36-f417d37683bd",
"6afb8b9e-b125-45e9-a7a0-be4a041bb87d"
],
"Groups": [
"34f05f13-de0d-423a-8145-948a8b166e83",
"10a8e50e-609f-4aa7-80a8-93b03db7bfd7"
],
"Opportunities": [
"b555d1a8-73ba-42a4-ba67-336abb5e72c4",
"46cfc8a6-f59c-41f0-9462-67bd9cf8a7ad"
]
}
},
{
"Id": "2592ed6d-d984-4cec-b6a3-50cf6d0e4f7d",
"ParentId": "c00e5a2c-108c-42f5-af92-bbc26a002e71",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"2065d784-0998-4500-8a24-84e555b10d3e",
"0572b7cc-0f47-4ba5-a994-bd7bb7d53b12"
],
"Companies": [
"3387421b-bdfb-4aac-ba36-f417d37683bd",
"6afb8b9e-b125-45e9-a7a0-be4a041bb87d"
],
"Groups": [
"34f05f13-de0d-423a-8145-948a8b166e83",
"10a8e50e-609f-4aa7-80a8-93b03db7bfd7"
],
"Opportunities": [
"b555d1a8-73ba-42a4-ba67-336abb5e72c4",
"46cfc8a6-f59c-41f0-9462-67bd9cf8a7ad"
]
}
}
]