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": "32181fa5-6fab-4dec-ba23-35cab558efe6",
"ParentId": "2d5e717e-a423-46fc-b2bc-8c044bc705af",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"78aad60b-10ce-4809-b6ac-f8ca2995442d",
"6c1a7203-4c5b-44e9-a012-1fdb3a57e1b7"
],
"Companies": [
"b23326de-01f7-478a-86d5-564fc2369bce",
"00fa9ee2-10bf-43bf-bb59-450d8cfda60f"
],
"Groups": [
"d6fc4753-fd95-43ea-9f79-052eeb7cf2f9",
"881613b2-d468-4518-92b3-71c47201dd46"
],
"Opportunities": [
"68b07b85-8ef0-415b-b79e-dad79269377d",
"7216f7e0-6681-44f1-864c-e33d78e0cfd6"
]
}
},
{
"Id": "32181fa5-6fab-4dec-ba23-35cab558efe6",
"ParentId": "2d5e717e-a423-46fc-b2bc-8c044bc705af",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"78aad60b-10ce-4809-b6ac-f8ca2995442d",
"6c1a7203-4c5b-44e9-a012-1fdb3a57e1b7"
],
"Companies": [
"b23326de-01f7-478a-86d5-564fc2369bce",
"00fa9ee2-10bf-43bf-bb59-450d8cfda60f"
],
"Groups": [
"d6fc4753-fd95-43ea-9f79-052eeb7cf2f9",
"881613b2-d468-4518-92b3-71c47201dd46"
],
"Opportunities": [
"68b07b85-8ef0-415b-b79e-dad79269377d",
"7216f7e0-6681-44f1-864c-e33d78e0cfd6"
]
}
}
]