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": "d6f78dc9-f55f-4616-aac7-73f97e3b1aa0",
"ParentId": "1fb5627f-1dbd-4104-9124-d6ff2279afc6",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"a14adcf1-e0f8-4a9d-a668-ba520e806a35",
"f0406304-beb6-4ff3-9f59-6db81d91671a"
],
"Companies": [
"e0a0d80f-86c3-40b8-bae9-9005049d6bc1",
"037739cf-1615-4881-9f75-a1051aed0378"
],
"Groups": [
"574e384f-d7e8-44b2-bec7-8c0bcf6f4921",
"9e9e02d6-e613-46e5-8817-8e06ccf27294"
],
"Opportunities": [
"b417874f-c8af-4c3f-9989-6f0d2a50abc7",
"22449ab5-aade-4308-9dac-e8a2de7037cb"
]
}
},
{
"Id": "d6f78dc9-f55f-4616-aac7-73f97e3b1aa0",
"ParentId": "1fb5627f-1dbd-4104-9124-d6ff2279afc6",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"a14adcf1-e0f8-4a9d-a668-ba520e806a35",
"f0406304-beb6-4ff3-9f59-6db81d91671a"
],
"Companies": [
"e0a0d80f-86c3-40b8-bae9-9005049d6bc1",
"037739cf-1615-4881-9f75-a1051aed0378"
],
"Groups": [
"574e384f-d7e8-44b2-bec7-8c0bcf6f4921",
"9e9e02d6-e613-46e5-8817-8e06ccf27294"
],
"Opportunities": [
"b417874f-c8af-4c3f-9989-6f0d2a50abc7",
"22449ab5-aade-4308-9dac-e8a2de7037cb"
]
}
}
]