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": "6046ab09-e9ce-466f-8f6a-4587e0376740",
"ParentId": "322a0fe3-1a85-41d6-89ec-ee5f935bce1b",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"40c5e396-208b-4ae7-bdc9-f884f2081938",
"4c74a34c-d879-4384-a65a-f064a1d956a6"
],
"Companies": [
"aa5d4327-46bf-4942-856b-e16c6c31172d",
"e36a4d5c-8079-482d-9246-105a29ca7185"
],
"Groups": [
"3fc24a22-2cfe-4c73-b9f5-635908c21905",
"29b3d2fb-af69-42d1-8613-bb814c4e5740"
],
"Opportunities": [
"2fd095e8-0cb3-414f-a871-20c85ea95cbf",
"2f5ff4b4-92d0-45a6-b13b-22e9b613746b"
]
}
},
{
"Id": "6046ab09-e9ce-466f-8f6a-4587e0376740",
"ParentId": "322a0fe3-1a85-41d6-89ec-ee5f935bce1b",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"40c5e396-208b-4ae7-bdc9-f884f2081938",
"4c74a34c-d879-4384-a65a-f064a1d956a6"
],
"Companies": [
"aa5d4327-46bf-4942-856b-e16c6c31172d",
"e36a4d5c-8079-482d-9246-105a29ca7185"
],
"Groups": [
"3fc24a22-2cfe-4c73-b9f5-635908c21905",
"29b3d2fb-af69-42d1-8613-bb814c4e5740"
],
"Opportunities": [
"2fd095e8-0cb3-414f-a871-20c85ea95cbf",
"2f5ff4b4-92d0-45a6-b13b-22e9b613746b"
]
}
}
]