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": "eaf4b6f9-1aac-4098-94e1-157a42526e0c",
"ParentId": "9d50d7a3-5be5-4cfc-b59b-d10877a6376d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"c682bb67-6bdc-4895-9380-1a0d37a1339e",
"f1f924f8-cf2d-4ddd-bc7b-f84f57db979d"
],
"Companies": [
"e54712de-3ef8-4c54-887b-ab894d62d339",
"1cd5db6c-e942-4d39-8d05-1ea95795bd12"
],
"Groups": [
"797c0ccb-0950-46a2-9e1d-6de335a7a163",
"3a366f82-724b-4716-9d4f-437425314919"
],
"Opportunities": [
"be65baad-005b-4382-8986-50699e01aa86",
"cc1fd4a8-afd0-4adf-b0ac-1a7a6e6e2cb2"
]
}
},
{
"Id": "eaf4b6f9-1aac-4098-94e1-157a42526e0c",
"ParentId": "9d50d7a3-5be5-4cfc-b59b-d10877a6376d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"c682bb67-6bdc-4895-9380-1a0d37a1339e",
"f1f924f8-cf2d-4ddd-bc7b-f84f57db979d"
],
"Companies": [
"e54712de-3ef8-4c54-887b-ab894d62d339",
"1cd5db6c-e942-4d39-8d05-1ea95795bd12"
],
"Groups": [
"797c0ccb-0950-46a2-9e1d-6de335a7a163",
"3a366f82-724b-4716-9d4f-437425314919"
],
"Opportunities": [
"be65baad-005b-4382-8986-50699e01aa86",
"cc1fd4a8-afd0-4adf-b0ac-1a7a6e6e2cb2"
]
}
}
]