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": "8ce66f7c-adee-40f2-ae0e-69ff261b9373",
"ParentId": "7100ea6c-0ee7-43c2-9047-676f2c14f1ca",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"14081697-c9ac-4ba6-bd42-b6e1c6b1ba2f",
"7c8827b1-8efa-4af0-95f3-84c2287f4a87"
],
"Companies": [
"cef6748b-14a4-4678-9df3-5736b5749823",
"e990d0a5-abc5-4c5a-be15-0a34c2395660"
],
"Groups": [
"1b064dd4-903e-4a6d-8038-75262ab9593a",
"67ca75e6-7891-44eb-93a4-eff8f088e0fc"
],
"Opportunities": [
"ad9539d8-02cf-4a52-9485-764e0be4e987",
"b30382d6-3648-48ac-877a-7f0c49538c57"
]
}
},
{
"Id": "8ce66f7c-adee-40f2-ae0e-69ff261b9373",
"ParentId": "7100ea6c-0ee7-43c2-9047-676f2c14f1ca",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"14081697-c9ac-4ba6-bd42-b6e1c6b1ba2f",
"7c8827b1-8efa-4af0-95f3-84c2287f4a87"
],
"Companies": [
"cef6748b-14a4-4678-9df3-5736b5749823",
"e990d0a5-abc5-4c5a-be15-0a34c2395660"
],
"Groups": [
"1b064dd4-903e-4a6d-8038-75262ab9593a",
"67ca75e6-7891-44eb-93a4-eff8f088e0fc"
],
"Opportunities": [
"ad9539d8-02cf-4a52-9485-764e0be4e987",
"b30382d6-3648-48ac-877a-7f0c49538c57"
]
}
}
]