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": "9a8bdeb3-c3ee-4951-947b-2ba4ce33557b",
"ParentId": "6692e8c3-0c85-45c0-adcd-ebaf6a66de3c",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"5f86858c-9085-4f22-956f-8feba7961dcb",
"58bab8d1-254f-40c5-83a5-9199efab59e0"
],
"Companies": [
"d8f59082-3360-437a-bfd9-6ce568433852",
"15940deb-105a-4878-8e86-6fab949d7192"
],
"Groups": [
"6150b540-7ad5-445b-a374-e9df60cd68ff",
"f2daf277-087e-4d8c-9eae-21b13874a0f7"
],
"Opportunities": [
"d9799677-4187-4f68-bd49-b318b6efdb0e",
"ffd73e62-ce48-4cce-9461-be4b34fec516"
]
}
},
{
"Id": "9a8bdeb3-c3ee-4951-947b-2ba4ce33557b",
"ParentId": "6692e8c3-0c85-45c0-adcd-ebaf6a66de3c",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"5f86858c-9085-4f22-956f-8feba7961dcb",
"58bab8d1-254f-40c5-83a5-9199efab59e0"
],
"Companies": [
"d8f59082-3360-437a-bfd9-6ce568433852",
"15940deb-105a-4878-8e86-6fab949d7192"
],
"Groups": [
"6150b540-7ad5-445b-a374-e9df60cd68ff",
"f2daf277-087e-4d8c-9eae-21b13874a0f7"
],
"Opportunities": [
"d9799677-4187-4f68-bd49-b318b6efdb0e",
"ffd73e62-ce48-4cce-9461-be4b34fec516"
]
}
}
]