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": "dd4dbc11-7804-4509-ae15-021f5abaec8d",
"ParentId": "ee988168-af61-4674-b615-50a57ba33556",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"223dfdd3-7eb6-46cf-83a3-a7b878b9e407",
"d6b8897a-f525-40d6-ad05-c621ce3fcf10"
],
"Companies": [
"fcd64a82-cc6a-4995-9439-8a1da1a3f650",
"b2861743-7b02-4b7b-9375-94f408bddeda"
],
"Groups": [
"438e26d2-68fd-4ed4-a559-0fa0e1f43f5e",
"de5d10fb-6512-42e1-b4f7-984a2fe191f2"
],
"Opportunities": [
"d4b4236f-9b00-420d-8e7c-c0c8505038e4",
"d0d7fa35-b61e-4a2b-9c53-aab2cb410796"
]
}
},
{
"Id": "dd4dbc11-7804-4509-ae15-021f5abaec8d",
"ParentId": "ee988168-af61-4674-b615-50a57ba33556",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"223dfdd3-7eb6-46cf-83a3-a7b878b9e407",
"d6b8897a-f525-40d6-ad05-c621ce3fcf10"
],
"Companies": [
"fcd64a82-cc6a-4995-9439-8a1da1a3f650",
"b2861743-7b02-4b7b-9375-94f408bddeda"
],
"Groups": [
"438e26d2-68fd-4ed4-a559-0fa0e1f43f5e",
"de5d10fb-6512-42e1-b4f7-984a2fe191f2"
],
"Opportunities": [
"d4b4236f-9b00-420d-8e7c-c0c8505038e4",
"d0d7fa35-b61e-4a2b-9c53-aab2cb410796"
]
}
}
]