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": "4a3607b1-39b4-46ed-8632-c0a0dc46197e",
"ParentId": "494b0988-76ff-4da6-8b9d-f5944dc99a55",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"4caa9ab9-58e1-417d-8501-9f445951c64c",
"1c0eb342-3d1d-4217-8f77-552756e3e02d"
],
"Companies": [
"3939b696-8a63-4eae-a926-1a4a67cb52fe",
"8444023d-e5fb-4355-8ff2-19e7fdbecda1"
],
"Groups": [
"1fdc3f51-e85c-4b65-8c00-138aa1cde259",
"728b937c-c547-4a5d-9919-0b818b8ceff5"
],
"Opportunities": [
"44fd6210-b048-4d2c-aa97-9e20db2b38a7",
"7d1773e6-c39a-4880-8f42-9db90b34138c"
]
}
},
{
"Id": "4a3607b1-39b4-46ed-8632-c0a0dc46197e",
"ParentId": "494b0988-76ff-4da6-8b9d-f5944dc99a55",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"4caa9ab9-58e1-417d-8501-9f445951c64c",
"1c0eb342-3d1d-4217-8f77-552756e3e02d"
],
"Companies": [
"3939b696-8a63-4eae-a926-1a4a67cb52fe",
"8444023d-e5fb-4355-8ff2-19e7fdbecda1"
],
"Groups": [
"1fdc3f51-e85c-4b65-8c00-138aa1cde259",
"728b937c-c547-4a5d-9919-0b818b8ceff5"
],
"Opportunities": [
"44fd6210-b048-4d2c-aa97-9e20db2b38a7",
"7d1773e6-c39a-4880-8f42-9db90b34138c"
]
}
}
]