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": "d4bd62e7-c763-4026-9317-e03dfe79fdf0",
"ParentId": "efce6c13-4a28-4e73-bc29-6e4b643add06",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"75867b8d-13b9-4c35-8558-eaf586cb8471",
"fd10c802-42d6-4c0d-ba93-4d774b041e20"
],
"Companies": [
"c1ee1e6f-9775-4f9c-b55b-1d7a30565469",
"aace9460-387a-4c16-aed5-ef4540206f80"
],
"Groups": [
"f65b936b-3eda-448d-bc61-8ab8ae7a4176",
"f0122227-e78a-40a8-bbb1-06bd180a5331"
],
"Opportunities": [
"afab2131-fe6c-494f-b35f-a9a685ed4e1e",
"e5d3916d-5dc6-429a-9c00-71b3bda4221f"
]
}
},
{
"Id": "d4bd62e7-c763-4026-9317-e03dfe79fdf0",
"ParentId": "efce6c13-4a28-4e73-bc29-6e4b643add06",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"75867b8d-13b9-4c35-8558-eaf586cb8471",
"fd10c802-42d6-4c0d-ba93-4d774b041e20"
],
"Companies": [
"c1ee1e6f-9775-4f9c-b55b-1d7a30565469",
"aace9460-387a-4c16-aed5-ef4540206f80"
],
"Groups": [
"f65b936b-3eda-448d-bc61-8ab8ae7a4176",
"f0122227-e78a-40a8-bbb1-06bd180a5331"
],
"Opportunities": [
"afab2131-fe6c-494f-b35f-a9a685ed4e1e",
"e5d3916d-5dc6-429a-9c00-71b3bda4221f"
]
}
}
]