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": "d0507042-7dc1-434b-a2b4-cbf6ecb2dcea",
"ParentId": "d224b05e-41e2-4734-8da2-c9c7750a09b0",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"4f3af490-e567-4a85-ade8-2e89eb2c8c37",
"7d3c4815-7750-4ad1-aec4-df130bd92ab6"
],
"Companies": [
"c1d5af77-fcde-4232-a412-1227463d19a0",
"db57e389-b786-4da5-bfd1-478c26da8953"
],
"Groups": [
"afc95257-f589-4906-b1f7-05a51373c1cf",
"6eeec24b-5c58-4434-8e62-0fea2434ec95"
],
"Opportunities": [
"4536fe82-6acd-4c13-9dd6-ab13a90f22a4",
"59b8504d-6782-4324-9022-19dc73ba0401"
]
}
},
{
"Id": "d0507042-7dc1-434b-a2b4-cbf6ecb2dcea",
"ParentId": "d224b05e-41e2-4734-8da2-c9c7750a09b0",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"4f3af490-e567-4a85-ade8-2e89eb2c8c37",
"7d3c4815-7750-4ad1-aec4-df130bd92ab6"
],
"Companies": [
"c1d5af77-fcde-4232-a412-1227463d19a0",
"db57e389-b786-4da5-bfd1-478c26da8953"
],
"Groups": [
"afc95257-f589-4906-b1f7-05a51373c1cf",
"6eeec24b-5c58-4434-8e62-0fea2434ec95"
],
"Opportunities": [
"4536fe82-6acd-4c13-9dd6-ab13a90f22a4",
"59b8504d-6782-4324-9022-19dc73ba0401"
]
}
}
]