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": "2923ce50-3365-4595-8869-a49149f94902",
"ParentId": "b62a81d0-a5c4-4472-a6dd-f199d3f70d6f",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"b71e0111-b3b2-49be-8c67-c16ba5dcdc6b",
"4f357847-80ca-46a0-8d90-9ee7cfece1c3"
],
"Companies": [
"1b1def8a-24db-46ca-b135-ea363a4af5d4",
"9a440957-ff28-480f-91db-86ff3f54722b"
],
"Groups": [
"1af0a648-7457-4e06-91c9-5b3282e2c267",
"665fd6e8-1186-48f0-8f44-2eabb55d7c0d"
],
"Opportunities": [
"1506e946-cb5d-451e-acc7-3e7320e62dba",
"842bbc13-6061-4d79-8934-b3613035429f"
]
}
},
{
"Id": "2923ce50-3365-4595-8869-a49149f94902",
"ParentId": "b62a81d0-a5c4-4472-a6dd-f199d3f70d6f",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"b71e0111-b3b2-49be-8c67-c16ba5dcdc6b",
"4f357847-80ca-46a0-8d90-9ee7cfece1c3"
],
"Companies": [
"1b1def8a-24db-46ca-b135-ea363a4af5d4",
"9a440957-ff28-480f-91db-86ff3f54722b"
],
"Groups": [
"1af0a648-7457-4e06-91c9-5b3282e2c267",
"665fd6e8-1186-48f0-8f44-2eabb55d7c0d"
],
"Opportunities": [
"1506e946-cb5d-451e-acc7-3e7320e62dba",
"842bbc13-6061-4d79-8934-b3613035429f"
]
}
}
]