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": "4421ed8a-3291-485d-9078-2924812aac5d",
"ParentId": "4fd6a4de-cd10-4650-b72c-3455252e1308",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"0d67da35-69c6-4e21-9631-66e6a21312ef",
"8f92fedf-8551-498d-be08-4bbf75751fa2"
],
"Companies": [
"ff4cb6d3-596d-4275-b002-dc5e0994813c",
"7bd1dbb1-332f-4619-9806-f55453fff5de"
],
"Groups": [
"adf2070c-7877-4a1d-9524-1390a8a7fa2b",
"e1590753-47b2-4224-819d-ebed7ab06916"
],
"Opportunities": [
"325381bf-9cb5-4357-bc1a-66bb82f1d694",
"df4b69b5-0bf4-4b0d-9db9-39b302d768ff"
]
}
},
{
"Id": "4421ed8a-3291-485d-9078-2924812aac5d",
"ParentId": "4fd6a4de-cd10-4650-b72c-3455252e1308",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"0d67da35-69c6-4e21-9631-66e6a21312ef",
"8f92fedf-8551-498d-be08-4bbf75751fa2"
],
"Companies": [
"ff4cb6d3-596d-4275-b002-dc5e0994813c",
"7bd1dbb1-332f-4619-9806-f55453fff5de"
],
"Groups": [
"adf2070c-7877-4a1d-9524-1390a8a7fa2b",
"e1590753-47b2-4224-819d-ebed7ab06916"
],
"Opportunities": [
"325381bf-9cb5-4357-bc1a-66bb82f1d694",
"df4b69b5-0bf4-4b0d-9db9-39b302d768ff"
]
}
}
]