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": "d88e64ec-ce5d-4364-9dfe-cd374238848b",
"ParentId": "8120f476-8df0-48dc-b62f-67e88bd32277",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"ac431bdd-ca37-4044-8e4f-af72f0d86c16",
"c082e072-8c43-48bb-910a-b0edb39d3274"
],
"Companies": [
"d4ca91cc-f4f9-45d9-bda6-65c9a31e4e8f",
"f5f4d3f4-5446-4be0-bbab-e295a423f168"
],
"Groups": [
"c9cc818d-1f73-46ed-9ad4-cb5a066ca3fd",
"795a6def-e943-4626-bdbc-efe2369541d1"
],
"Opportunities": [
"d2bd7ecb-24f8-4dfe-824c-d92b54ef4041",
"8ada12e3-4f7d-431d-9382-e562c4b2ac01"
]
}
},
{
"Id": "d88e64ec-ce5d-4364-9dfe-cd374238848b",
"ParentId": "8120f476-8df0-48dc-b62f-67e88bd32277",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"ac431bdd-ca37-4044-8e4f-af72f0d86c16",
"c082e072-8c43-48bb-910a-b0edb39d3274"
],
"Companies": [
"d4ca91cc-f4f9-45d9-bda6-65c9a31e4e8f",
"f5f4d3f4-5446-4be0-bbab-e295a423f168"
],
"Groups": [
"c9cc818d-1f73-46ed-9ad4-cb5a066ca3fd",
"795a6def-e943-4626-bdbc-efe2369541d1"
],
"Opportunities": [
"d2bd7ecb-24f8-4dfe-824c-d92b54ef4041",
"8ada12e3-4f7d-431d-9382-e562c4b2ac01"
]
}
}
]