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": "9737b4a0-33b0-4c49-9a63-54bfe4889109",
"ParentId": "150e9f43-6351-4e83-a5ae-da6b34f5c482",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"53cea118-b6a3-43fd-9a4c-12897933f296",
"81dbedb6-7b4a-4a44-baa7-f5a278585eef"
],
"Companies": [
"ccbc8695-a5ad-4a84-b0c9-77116ca5cd34",
"40ff4f82-8db0-45ed-b1dd-fceed0a1bd1c"
],
"Groups": [
"37d99256-7b86-46dd-b352-9e2025c16e8d",
"a557bc69-2445-41bf-9af1-bc12b789a19d"
],
"Opportunities": [
"5455edf8-b9d3-4c8c-99ff-02e685e08c21",
"e8dc4664-20e4-4f18-b9b7-c8540f8db515"
]
}
},
{
"Id": "9737b4a0-33b0-4c49-9a63-54bfe4889109",
"ParentId": "150e9f43-6351-4e83-a5ae-da6b34f5c482",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"53cea118-b6a3-43fd-9a4c-12897933f296",
"81dbedb6-7b4a-4a44-baa7-f5a278585eef"
],
"Companies": [
"ccbc8695-a5ad-4a84-b0c9-77116ca5cd34",
"40ff4f82-8db0-45ed-b1dd-fceed0a1bd1c"
],
"Groups": [
"37d99256-7b86-46dd-b352-9e2025c16e8d",
"a557bc69-2445-41bf-9af1-bc12b789a19d"
],
"Opportunities": [
"5455edf8-b9d3-4c8c-99ff-02e685e08c21",
"e8dc4664-20e4-4f18-b9b7-c8540f8db515"
]
}
}
]