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": "5f91a38f-6204-4ffc-96b2-a6207ff0df5e",
"ParentId": "6b491277-d505-42ab-9acd-6c30d1c62d56",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"cf32dae6-84a8-4256-854e-db089b139309",
"3fda9893-d5af-4678-8e72-e0bd747ff41d"
],
"Companies": [
"be9a56cc-d5cf-4554-a884-7a1392bd29be",
"7a94889b-14cd-4235-9d9c-3446d7a5338e"
],
"Groups": [
"f7378499-3399-49f7-b6ee-5c5e7558efe5",
"7c1efc9d-fadc-44a6-a25f-79bd7ee23d1e"
],
"Opportunities": [
"8c17741d-396d-4343-b014-f523588ffcd9",
"cd741404-98c0-47ce-8387-8b67dcfeba6c"
]
}
},
{
"Id": "5f91a38f-6204-4ffc-96b2-a6207ff0df5e",
"ParentId": "6b491277-d505-42ab-9acd-6c30d1c62d56",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"cf32dae6-84a8-4256-854e-db089b139309",
"3fda9893-d5af-4678-8e72-e0bd747ff41d"
],
"Companies": [
"be9a56cc-d5cf-4554-a884-7a1392bd29be",
"7a94889b-14cd-4235-9d9c-3446d7a5338e"
],
"Groups": [
"f7378499-3399-49f7-b6ee-5c5e7558efe5",
"7c1efc9d-fadc-44a6-a25f-79bd7ee23d1e"
],
"Opportunities": [
"8c17741d-396d-4343-b014-f523588ffcd9",
"cd741404-98c0-47ce-8387-8b67dcfeba6c"
]
}
}
]