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": "acbb4f76-f042-4274-9f35-becb4f2f452c",
"ParentId": "289e4027-68e0-4fa8-8ba2-20e9b689181b",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"eb386afa-b3ee-4905-982d-24abb99a3f8f",
"fc1a375c-b79c-4ee7-9269-f5c6eefa2067"
],
"Companies": [
"fa81c4fe-0702-48ee-953f-271fda42e3f1",
"1686ac1d-f97c-4943-a2c9-6764280556f6"
],
"Groups": [
"d3637433-ee5d-4b4b-bbb9-bc5e0c0caac8",
"ac7ec001-ebce-488d-a253-d47e1ead62d3"
],
"Opportunities": [
"99f13a99-1f52-4acd-988e-0e15aecdba04",
"9b894479-e2b5-4ea0-9009-b380bbe33688"
]
}
},
{
"Id": "acbb4f76-f042-4274-9f35-becb4f2f452c",
"ParentId": "289e4027-68e0-4fa8-8ba2-20e9b689181b",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"eb386afa-b3ee-4905-982d-24abb99a3f8f",
"fc1a375c-b79c-4ee7-9269-f5c6eefa2067"
],
"Companies": [
"fa81c4fe-0702-48ee-953f-271fda42e3f1",
"1686ac1d-f97c-4943-a2c9-6764280556f6"
],
"Groups": [
"d3637433-ee5d-4b4b-bbb9-bc5e0c0caac8",
"ac7ec001-ebce-488d-a253-d47e1ead62d3"
],
"Opportunities": [
"99f13a99-1f52-4acd-988e-0e15aecdba04",
"9b894479-e2b5-4ea0-9009-b380bbe33688"
]
}
}
]