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": "0cb33001-5b53-4c4a-a969-95bfad33f154",
"ParentId": "c287373e-ceda-489f-8fa6-dc6a8fdc213f",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"a268c7c9-fcb1-492e-985a-75da7484951d",
"72c62f9f-01ec-4d49-aaad-9be4a4c11d21"
],
"Companies": [
"f3b60b10-9a43-47a5-aed6-8d1404b44018",
"1d28b733-b6bd-4a36-9b15-2716f9801b4b"
],
"Groups": [
"25c31a07-11b7-4b7b-a4ed-2f431d7a502d",
"b1108c73-81f7-4279-9487-574769d3e533"
],
"Opportunities": [
"0374413c-1c8e-4dab-9ffd-44ea68770188",
"14dd38f5-c24e-48a0-b4f5-151da37471ef"
]
}
},
{
"Id": "0cb33001-5b53-4c4a-a969-95bfad33f154",
"ParentId": "c287373e-ceda-489f-8fa6-dc6a8fdc213f",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"a268c7c9-fcb1-492e-985a-75da7484951d",
"72c62f9f-01ec-4d49-aaad-9be4a4c11d21"
],
"Companies": [
"f3b60b10-9a43-47a5-aed6-8d1404b44018",
"1d28b733-b6bd-4a36-9b15-2716f9801b4b"
],
"Groups": [
"25c31a07-11b7-4b7b-a4ed-2f431d7a502d",
"b1108c73-81f7-4279-9487-574769d3e533"
],
"Opportunities": [
"0374413c-1c8e-4dab-9ffd-44ea68770188",
"14dd38f5-c24e-48a0-b4f5-151da37471ef"
]
}
}
]