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": "9db7303c-92e0-456d-9b91-efbdb1076515",
"ParentId": "d2c4e00b-eb71-4d42-a4b4-91c34a8523bf",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"af77f9fe-bf16-49fd-81e3-fdb65cf91c89",
"2f236f4e-68d5-4b3f-9593-7dafadd072f8"
],
"Companies": [
"2359ce79-c4ec-4c40-ac91-a4a8dadca609",
"e962ca36-ccab-4b2d-91f5-719111d819ab"
],
"Groups": [
"d785da10-7ca8-4c17-ba0b-7ad787626277",
"da8f5e99-f677-4509-aebf-df92c4c9185a"
],
"Opportunities": [
"ace1a58b-428a-42d7-9d24-68930f889c68",
"abad7216-c0c3-436d-a569-ff9d35841fc8"
]
}
},
{
"Id": "9db7303c-92e0-456d-9b91-efbdb1076515",
"ParentId": "d2c4e00b-eb71-4d42-a4b4-91c34a8523bf",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"af77f9fe-bf16-49fd-81e3-fdb65cf91c89",
"2f236f4e-68d5-4b3f-9593-7dafadd072f8"
],
"Companies": [
"2359ce79-c4ec-4c40-ac91-a4a8dadca609",
"e962ca36-ccab-4b2d-91f5-719111d819ab"
],
"Groups": [
"d785da10-7ca8-4c17-ba0b-7ad787626277",
"da8f5e99-f677-4509-aebf-df92c4c9185a"
],
"Opportunities": [
"ace1a58b-428a-42d7-9d24-68930f889c68",
"abad7216-c0c3-436d-a569-ff9d35841fc8"
]
}
}
]