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": "5ed0a99b-d6f2-49fd-8c5e-3bb71bd9a5c6",
"ParentId": "9ffeaa68-6345-4020-aaa0-f287415287a6",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"826d6ba3-9813-4bde-9113-c5220f7999c4",
"bb8714ee-5afc-4067-89be-9809a67161c5"
],
"Companies": [
"0ed70857-e527-4a20-a93a-c9841b9e844c",
"19dbf5bb-b456-4fe5-8d7f-eeb54448cb73"
],
"Groups": [
"e70dc79c-7062-4f6c-9d9e-33277350c41c",
"10f555b1-fdfe-44ad-92f1-bea09aa87f8b"
],
"Opportunities": [
"7ef0ab6e-5e47-4ded-90f6-cb9cebd725e8",
"f14346ac-f17f-4000-a485-a2044728a809"
]
}
},
{
"Id": "5ed0a99b-d6f2-49fd-8c5e-3bb71bd9a5c6",
"ParentId": "9ffeaa68-6345-4020-aaa0-f287415287a6",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"826d6ba3-9813-4bde-9113-c5220f7999c4",
"bb8714ee-5afc-4067-89be-9809a67161c5"
],
"Companies": [
"0ed70857-e527-4a20-a93a-c9841b9e844c",
"19dbf5bb-b456-4fe5-8d7f-eeb54448cb73"
],
"Groups": [
"e70dc79c-7062-4f6c-9d9e-33277350c41c",
"10f555b1-fdfe-44ad-92f1-bea09aa87f8b"
],
"Opportunities": [
"7ef0ab6e-5e47-4ded-90f6-cb9cebd725e8",
"f14346ac-f17f-4000-a485-a2044728a809"
]
}
}
]