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": "3494250a-21ac-4137-89bf-0edd28f483bd",
"ParentId": "f9fb08cd-728d-4ed8-983d-72409c030433",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"973ac737-f1a4-4aeb-8359-ae99bdb6c3ce",
"146fdc92-022a-466f-b1cc-64486a1de397"
],
"Companies": [
"e5e3e6fe-1d9a-4d3c-b62b-2f0c4865a605",
"a6956cd2-da7a-4ea4-89da-b6be99be6029"
],
"Groups": [
"2eff9b5b-0f56-497f-b680-593b7a8ba632",
"056a7a26-9b91-4d0d-ae7e-df618842f458"
],
"Opportunities": [
"95686e92-f229-4b96-9593-822ce7614f36",
"efe282e1-3f4b-44a1-be54-4aa63c7821dd"
]
}
},
{
"Id": "3494250a-21ac-4137-89bf-0edd28f483bd",
"ParentId": "f9fb08cd-728d-4ed8-983d-72409c030433",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"973ac737-f1a4-4aeb-8359-ae99bdb6c3ce",
"146fdc92-022a-466f-b1cc-64486a1de397"
],
"Companies": [
"e5e3e6fe-1d9a-4d3c-b62b-2f0c4865a605",
"a6956cd2-da7a-4ea4-89da-b6be99be6029"
],
"Groups": [
"2eff9b5b-0f56-497f-b680-593b7a8ba632",
"056a7a26-9b91-4d0d-ae7e-df618842f458"
],
"Opportunities": [
"95686e92-f229-4b96-9593-822ce7614f36",
"efe282e1-3f4b-44a1-be54-4aa63c7821dd"
]
}
}
]