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": "d9e68700-43ba-44a3-b254-000bf2ea8302",
"ParentId": "371ff066-d18e-4218-b55c-53d68813a986",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"26e26e91-f448-4e98-b27d-5024498bb6c6",
"448868d0-ac12-424a-a7f8-45a741b27f99"
],
"Companies": [
"3703e5ed-0884-40c7-9a8c-8217ee68cfb1",
"62f0960b-85db-4af0-be0d-0dbb75b87e7d"
],
"Groups": [
"70f8ee93-10fe-4b1a-919b-bca802ac888f",
"af645150-c119-4b46-a473-763d6a96965a"
],
"Opportunities": [
"9fa010d3-3d39-4f6f-b80e-866f47a6174c",
"94167a85-1dc4-42cc-abf0-3b66f7e0baee"
]
}
},
{
"Id": "d9e68700-43ba-44a3-b254-000bf2ea8302",
"ParentId": "371ff066-d18e-4218-b55c-53d68813a986",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"26e26e91-f448-4e98-b27d-5024498bb6c6",
"448868d0-ac12-424a-a7f8-45a741b27f99"
],
"Companies": [
"3703e5ed-0884-40c7-9a8c-8217ee68cfb1",
"62f0960b-85db-4af0-be0d-0dbb75b87e7d"
],
"Groups": [
"70f8ee93-10fe-4b1a-919b-bca802ac888f",
"af645150-c119-4b46-a473-763d6a96965a"
],
"Opportunities": [
"9fa010d3-3d39-4f6f-b80e-866f47a6174c",
"94167a85-1dc4-42cc-abf0-3b66f7e0baee"
]
}
}
]