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": "ae74622c-9394-4f87-9c76-e031f019fa28",
"ParentId": "90caa570-7a15-4bc2-9eda-8ef3012708a2",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"6eb23759-95ca-48b7-85e2-c2ec75103f9b",
"8f247d55-8de7-4818-b0ba-0283c09e70a2"
],
"Companies": [
"696eb318-74a4-4c4c-9f01-2aea5221a495",
"37128b3c-bc43-4209-b8d4-ba1eb2b1df3a"
],
"Groups": [
"07208ede-800d-485f-847a-16d81332c296",
"0b10e894-cccc-4226-9878-0835425feff8"
],
"Opportunities": [
"53b1a80e-553b-444b-b551-d3990b4261a4",
"c5c7c6b0-24b4-4df5-8e21-663468c78abd"
]
}
},
{
"Id": "ae74622c-9394-4f87-9c76-e031f019fa28",
"ParentId": "90caa570-7a15-4bc2-9eda-8ef3012708a2",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"6eb23759-95ca-48b7-85e2-c2ec75103f9b",
"8f247d55-8de7-4818-b0ba-0283c09e70a2"
],
"Companies": [
"696eb318-74a4-4c4c-9f01-2aea5221a495",
"37128b3c-bc43-4209-b8d4-ba1eb2b1df3a"
],
"Groups": [
"07208ede-800d-485f-847a-16d81332c296",
"0b10e894-cccc-4226-9878-0835425feff8"
],
"Opportunities": [
"53b1a80e-553b-444b-b551-d3990b4261a4",
"c5c7c6b0-24b4-4df5-8e21-663468c78abd"
]
}
}
]