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": "7045d5f2-6a49-44d2-90db-50c3568635d2",
"ParentId": "a1b7cce3-8f37-4b75-af61-d426b69c4d6f",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"bfffe75c-e5c6-4e33-afc3-c9a7ee82ce05",
"455f4c29-ac36-4bf5-a05c-4049c12ca08e"
],
"Companies": [
"34a0b53b-3bf4-4d2f-ba31-df40d0acf264",
"c84d0671-34dd-4d8a-b3f7-cdfde534a311"
],
"Groups": [
"b03d1813-6455-428b-870e-70ee12145c28",
"33cc9af3-fb46-41b7-a9fa-77b4b8da3f22"
],
"Opportunities": [
"a84bd619-0a26-42e1-be25-1c5bed743e95",
"9aae731d-3bd7-49b2-9484-f9c709261f02"
]
}
},
{
"Id": "7045d5f2-6a49-44d2-90db-50c3568635d2",
"ParentId": "a1b7cce3-8f37-4b75-af61-d426b69c4d6f",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"bfffe75c-e5c6-4e33-afc3-c9a7ee82ce05",
"455f4c29-ac36-4bf5-a05c-4049c12ca08e"
],
"Companies": [
"34a0b53b-3bf4-4d2f-ba31-df40d0acf264",
"c84d0671-34dd-4d8a-b3f7-cdfde534a311"
],
"Groups": [
"b03d1813-6455-428b-870e-70ee12145c28",
"33cc9af3-fb46-41b7-a9fa-77b4b8da3f22"
],
"Opportunities": [
"a84bd619-0a26-42e1-be25-1c5bed743e95",
"9aae731d-3bd7-49b2-9484-f9c709261f02"
]
}
}
]