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": "81a66084-9bd2-4510-8826-1d4aed836bbf",
"ParentId": "95eebd9a-01d5-4bb1-ac4e-ee8d45e362bc",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"dbdecca6-6840-46b1-89f4-e6600ebdee33",
"e12da5f8-bfa3-4297-a4d9-4b6e139fd160"
],
"Companies": [
"1f1ca7f0-8815-42bd-8fd1-895d0fbae894",
"008bdcd6-000c-4d5b-952d-18891ce16a09"
],
"Groups": [
"d2e73602-3b3a-436e-9558-3890e8951126",
"2699f948-50e7-45e8-9ed7-db14c0e77f0a"
],
"Opportunities": [
"cd53e6f9-b07e-4a87-bb16-921bb511adf9",
"54807456-a2a2-4dd8-8915-5a24a94bb020"
]
}
},
{
"Id": "81a66084-9bd2-4510-8826-1d4aed836bbf",
"ParentId": "95eebd9a-01d5-4bb1-ac4e-ee8d45e362bc",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"dbdecca6-6840-46b1-89f4-e6600ebdee33",
"e12da5f8-bfa3-4297-a4d9-4b6e139fd160"
],
"Companies": [
"1f1ca7f0-8815-42bd-8fd1-895d0fbae894",
"008bdcd6-000c-4d5b-952d-18891ce16a09"
],
"Groups": [
"d2e73602-3b3a-436e-9558-3890e8951126",
"2699f948-50e7-45e8-9ed7-db14c0e77f0a"
],
"Opportunities": [
"cd53e6f9-b07e-4a87-bb16-921bb511adf9",
"54807456-a2a2-4dd8-8915-5a24a94bb020"
]
}
}
]