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": "69abbca4-a3dc-462b-988b-5f435367f6de",
"ParentId": "0b7db82e-a048-405f-b244-9828772a94b8",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"a0ffd6d4-c38e-4ffb-a608-0bffb2b7879e",
"c30473f4-5619-48b8-976f-2e094a5d2052"
],
"Companies": [
"6598f80e-b3f4-4bb7-aa46-2f3fc06711e0",
"14f75408-9826-4041-81d6-127a42daa2ed"
],
"Groups": [
"24d5722d-088a-4c95-9e42-8a3d30ff3daa",
"f15889d6-37c0-48d0-8580-7f963c896858"
],
"Opportunities": [
"75ea4ed0-0a4d-417d-bbd7-744667cd2386",
"19862d11-fd4a-4105-9e8f-fde0fe8a5da2"
]
}
},
{
"Id": "69abbca4-a3dc-462b-988b-5f435367f6de",
"ParentId": "0b7db82e-a048-405f-b244-9828772a94b8",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"a0ffd6d4-c38e-4ffb-a608-0bffb2b7879e",
"c30473f4-5619-48b8-976f-2e094a5d2052"
],
"Companies": [
"6598f80e-b3f4-4bb7-aa46-2f3fc06711e0",
"14f75408-9826-4041-81d6-127a42daa2ed"
],
"Groups": [
"24d5722d-088a-4c95-9e42-8a3d30ff3daa",
"f15889d6-37c0-48d0-8580-7f963c896858"
],
"Opportunities": [
"75ea4ed0-0a4d-417d-bbd7-744667cd2386",
"19862d11-fd4a-4105-9e8f-fde0fe8a5da2"
]
}
}
]