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": "28c5c878-0ed6-469b-b3b9-dd39b1081595",
"ParentId": "dbf0b3b1-aa8a-4c28-9163-db111499f5f5",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"94153c04-d748-4db6-85e0-803583f241de",
"33df7e6c-4191-47a7-8b3b-5293b6455d4e"
],
"Companies": [
"1ed470d3-9825-4900-8c50-1dfb441e2881",
"e1b623d0-4d3e-45a1-aaaa-2c18616d7c06"
],
"Groups": [
"f09e15c6-5ae7-4822-915b-b9944a6cc504",
"edbc9f3d-0b6a-476d-96d9-fa2c0065b32b"
],
"Opportunities": [
"6cd992ea-bb5c-41b8-b404-f86ae51ee03a",
"c48bfbe8-ea26-469c-ba7f-3d2ff146d464"
]
}
},
{
"Id": "28c5c878-0ed6-469b-b3b9-dd39b1081595",
"ParentId": "dbf0b3b1-aa8a-4c28-9163-db111499f5f5",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"94153c04-d748-4db6-85e0-803583f241de",
"33df7e6c-4191-47a7-8b3b-5293b6455d4e"
],
"Companies": [
"1ed470d3-9825-4900-8c50-1dfb441e2881",
"e1b623d0-4d3e-45a1-aaaa-2c18616d7c06"
],
"Groups": [
"f09e15c6-5ae7-4822-915b-b9944a6cc504",
"edbc9f3d-0b6a-476d-96d9-fa2c0065b32b"
],
"Opportunities": [
"6cd992ea-bb5c-41b8-b404-f86ae51ee03a",
"c48bfbe8-ea26-469c-ba7f-3d2ff146d464"
]
}
}
]