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": "85845ab8-7546-4c5c-96bb-596747278de3",
"ParentId": "5e078e31-16ad-4aee-abd1-b8134986f226",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"71d3460d-df61-4f24-9580-c0d6d7a0c329",
"07b584c8-283d-4aee-9966-07e61c9630eb"
],
"Companies": [
"1b7af2c8-f6cd-4e45-9d8f-14eb86575dd7",
"8e7043ec-cccb-4ab4-9997-82c0141a1840"
],
"Groups": [
"b113169b-a615-42a8-8a24-dbbfad08c779",
"f088f4ac-1bad-44b9-b62e-2e87a387f055"
],
"Opportunities": [
"7a935ad9-a274-41ca-9219-3ff224e02e37",
"dbe2bcb6-8bdd-4c36-8725-0b53bbbdca31"
]
}
},
{
"Id": "85845ab8-7546-4c5c-96bb-596747278de3",
"ParentId": "5e078e31-16ad-4aee-abd1-b8134986f226",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"71d3460d-df61-4f24-9580-c0d6d7a0c329",
"07b584c8-283d-4aee-9966-07e61c9630eb"
],
"Companies": [
"1b7af2c8-f6cd-4e45-9d8f-14eb86575dd7",
"8e7043ec-cccb-4ab4-9997-82c0141a1840"
],
"Groups": [
"b113169b-a615-42a8-8a24-dbbfad08c779",
"f088f4ac-1bad-44b9-b62e-2e87a387f055"
],
"Opportunities": [
"7a935ad9-a274-41ca-9219-3ff224e02e37",
"dbe2bcb6-8bdd-4c36-8725-0b53bbbdca31"
]
}
}
]