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": "28e7deb2-a742-492e-a69e-41e48075d25b",
"ParentId": "c344d047-b93d-469d-b782-8151983aa0c9",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"d2dfcbc4-24c7-45ef-b53d-56b8b2b250f2",
"02712350-4d82-4cbb-a5e3-db967826cc3f"
],
"Companies": [
"98005c2c-5093-4994-b024-68057cbf9a40",
"50c76996-0af3-40af-b937-f8d8d380b22a"
],
"Groups": [
"0696c697-d366-4e01-b095-415fd027fead",
"7d376e0e-fa70-43e6-a33d-15942c1bc94d"
],
"Opportunities": [
"a3df361e-8a2e-4c04-afad-8f6c3a9ed7b5",
"8387fc36-0480-4fd8-a744-7ab6cf8dc0e7"
]
}
},
{
"Id": "28e7deb2-a742-492e-a69e-41e48075d25b",
"ParentId": "c344d047-b93d-469d-b782-8151983aa0c9",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"d2dfcbc4-24c7-45ef-b53d-56b8b2b250f2",
"02712350-4d82-4cbb-a5e3-db967826cc3f"
],
"Companies": [
"98005c2c-5093-4994-b024-68057cbf9a40",
"50c76996-0af3-40af-b937-f8d8d380b22a"
],
"Groups": [
"0696c697-d366-4e01-b095-415fd027fead",
"7d376e0e-fa70-43e6-a33d-15942c1bc94d"
],
"Opportunities": [
"a3df361e-8a2e-4c04-afad-8f6c3a9ed7b5",
"8387fc36-0480-4fd8-a744-7ab6cf8dc0e7"
]
}
}
]