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": "a8f994d6-a93c-4475-8008-d74e6c0719b2",
"ParentId": "93c38b44-fc5f-4384-8f9b-2c5a3fe92683",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"7294777d-471f-4add-b97c-ff9f33f86429",
"eeccd83f-0144-4b54-8dac-c6a51ba57874"
],
"Companies": [
"716c3a2b-b6d3-4a69-a778-b3aa80e19662",
"cbc77c96-7e3c-4720-915f-41bcdd8da3ed"
],
"Groups": [
"7b8ec7c3-2dbf-413e-8c73-9f5b24e31959",
"4f5bcdac-f4b2-42fe-b499-6970a00c3948"
],
"Opportunities": [
"3f7bc1b1-3301-41bf-8133-975b938bf1bc",
"0c8ac43c-bc20-4f31-a9e7-f64250176577"
]
}
},
{
"Id": "a8f994d6-a93c-4475-8008-d74e6c0719b2",
"ParentId": "93c38b44-fc5f-4384-8f9b-2c5a3fe92683",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"7294777d-471f-4add-b97c-ff9f33f86429",
"eeccd83f-0144-4b54-8dac-c6a51ba57874"
],
"Companies": [
"716c3a2b-b6d3-4a69-a778-b3aa80e19662",
"cbc77c96-7e3c-4720-915f-41bcdd8da3ed"
],
"Groups": [
"7b8ec7c3-2dbf-413e-8c73-9f5b24e31959",
"4f5bcdac-f4b2-42fe-b499-6970a00c3948"
],
"Opportunities": [
"3f7bc1b1-3301-41bf-8133-975b938bf1bc",
"0c8ac43c-bc20-4f31-a9e7-f64250176577"
]
}
}
]