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": "57b667e8-c942-427f-be42-8704b1bf4dd3",
"ParentId": "282fc90a-6263-4a06-ad0e-ae6b0429e098",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"8c6c641c-f20e-4207-90b8-5c72faae3424",
"774d7908-410f-46de-91e6-ce5f9adb5d45"
],
"Companies": [
"7d3dcd14-b19b-422b-bfad-88733c3798a2",
"db9b85ca-9dde-4ef5-b59a-5cbb8ab6b9e5"
],
"Groups": [
"92099fd6-e750-4d3b-a4c8-23970408655b",
"aaa1ad11-e178-4942-827a-65dd38ac6780"
],
"Opportunities": [
"edfe06de-bee6-428f-b751-a83b04863e48",
"7f610160-fe22-4191-a473-38bcfb9c8ded"
]
}
},
{
"Id": "57b667e8-c942-427f-be42-8704b1bf4dd3",
"ParentId": "282fc90a-6263-4a06-ad0e-ae6b0429e098",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"8c6c641c-f20e-4207-90b8-5c72faae3424",
"774d7908-410f-46de-91e6-ce5f9adb5d45"
],
"Companies": [
"7d3dcd14-b19b-422b-bfad-88733c3798a2",
"db9b85ca-9dde-4ef5-b59a-5cbb8ab6b9e5"
],
"Groups": [
"92099fd6-e750-4d3b-a4c8-23970408655b",
"aaa1ad11-e178-4942-827a-65dd38ac6780"
],
"Opportunities": [
"edfe06de-bee6-428f-b751-a83b04863e48",
"7f610160-fe22-4191-a473-38bcfb9c8ded"
]
}
}
]