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": "58a715c7-7595-459f-b4b1-5f8d2705735e",
"ParentId": "cf1e9357-a0e9-42d6-987b-3fd83ee49a86",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"ae823073-f17b-4724-ace0-f307e78b748e",
"8af881f4-bb46-4f13-8481-a6ce7c1b4207"
],
"Companies": [
"fc4a8b0a-f0c1-48f1-be82-ad3709ec993b",
"53e729db-e957-43c4-918f-467da2ebfa30"
],
"Groups": [
"3a6bc890-cb36-4844-9c4c-140cb0082144",
"50fe33ca-9dc6-4831-ad34-833a38198433"
],
"Opportunities": [
"f742ccb8-5665-4a7a-b685-89bda3d11900",
"d79f7215-cd77-4a7e-a518-afab894e1c24"
]
}
},
{
"Id": "58a715c7-7595-459f-b4b1-5f8d2705735e",
"ParentId": "cf1e9357-a0e9-42d6-987b-3fd83ee49a86",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"ae823073-f17b-4724-ace0-f307e78b748e",
"8af881f4-bb46-4f13-8481-a6ce7c1b4207"
],
"Companies": [
"fc4a8b0a-f0c1-48f1-be82-ad3709ec993b",
"53e729db-e957-43c4-918f-467da2ebfa30"
],
"Groups": [
"3a6bc890-cb36-4844-9c4c-140cb0082144",
"50fe33ca-9dc6-4831-ad34-833a38198433"
],
"Opportunities": [
"f742ccb8-5665-4a7a-b685-89bda3d11900",
"d79f7215-cd77-4a7e-a518-afab894e1c24"
]
}
}
]