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": "78eb7299-e98f-4de8-8092-21e4b1bbb8ca",
"ParentId": "60c91005-f3fd-4c17-a6b5-46dd9d4cbc95",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"76d282a5-2211-42e6-9496-15ed16f7b44c",
"3b3ec77d-ddf1-48dc-9d17-a40488ddef38"
],
"Companies": [
"61dd573a-60aa-4d9f-8b27-4a23dd0b0c78",
"f80e410c-5382-4419-82c1-c5c1a3ecc8e1"
],
"Groups": [
"482ec887-e368-4e1f-94b0-7f1b20007318",
"ccc1160b-16f9-402e-8c32-6a79d2e26646"
],
"Opportunities": [
"81f2bc9f-2ebd-4d7e-bfca-aae9f12955ce",
"b8e2681d-9042-4709-a55f-4fcdb20384d3"
]
}
},
{
"Id": "78eb7299-e98f-4de8-8092-21e4b1bbb8ca",
"ParentId": "60c91005-f3fd-4c17-a6b5-46dd9d4cbc95",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"76d282a5-2211-42e6-9496-15ed16f7b44c",
"3b3ec77d-ddf1-48dc-9d17-a40488ddef38"
],
"Companies": [
"61dd573a-60aa-4d9f-8b27-4a23dd0b0c78",
"f80e410c-5382-4419-82c1-c5c1a3ecc8e1"
],
"Groups": [
"482ec887-e368-4e1f-94b0-7f1b20007318",
"ccc1160b-16f9-402e-8c32-6a79d2e26646"
],
"Opportunities": [
"81f2bc9f-2ebd-4d7e-bfca-aae9f12955ce",
"b8e2681d-9042-4709-a55f-4fcdb20384d3"
]
}
}
]