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": "a90cc5ac-82d6-48cd-bd67-44961a8554c9",
"ParentId": "11435c7b-144a-408f-9e71-2e23b1db068a",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"567e05d3-5c32-49f7-b5be-5afc369aa61e",
"7770670c-a95b-4151-b877-88eeb185db70"
],
"Companies": [
"cf23d910-db5b-41ab-bba2-2c179fc10057",
"be999ed2-6251-4e28-b32f-9d2cb02a2593"
],
"Groups": [
"0755cc9d-3e9b-4a0c-ad76-1613a83121f3",
"d849fe64-626e-4fc0-9d68-8cbd00cd3b1c"
],
"Opportunities": [
"9acec2de-bdf3-46d8-8565-3160c946a6b0",
"2efc96c6-142b-496a-9f2c-9dad53dcbfc1"
]
}
},
{
"Id": "a90cc5ac-82d6-48cd-bd67-44961a8554c9",
"ParentId": "11435c7b-144a-408f-9e71-2e23b1db068a",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"567e05d3-5c32-49f7-b5be-5afc369aa61e",
"7770670c-a95b-4151-b877-88eeb185db70"
],
"Companies": [
"cf23d910-db5b-41ab-bba2-2c179fc10057",
"be999ed2-6251-4e28-b32f-9d2cb02a2593"
],
"Groups": [
"0755cc9d-3e9b-4a0c-ad76-1613a83121f3",
"d849fe64-626e-4fc0-9d68-8cbd00cd3b1c"
],
"Opportunities": [
"9acec2de-bdf3-46d8-8565-3160c946a6b0",
"2efc96c6-142b-496a-9f2c-9dad53dcbfc1"
]
}
}
]