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": "d6ebd9d3-dc33-4593-ad5d-cd9f2bef0577",
"ParentId": "c3cc48ee-f02b-4199-9035-57f5b82142ed",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"d108c042-6d95-4c2d-91bd-1b0578b8c5d9",
"f1bce98d-5951-430d-b4ce-e5161e03467b"
],
"Companies": [
"32473b58-bc4e-42aa-b8e1-b64132b16faa",
"42dcabb3-15d3-4ade-8b1a-66a9100a6c96"
],
"Groups": [
"d6b80d5d-de1b-4b76-93c9-2f2bb358b6b4",
"33e53eea-7794-4a62-b4d0-46632b6a6768"
],
"Opportunities": [
"c2abfd8f-3d10-4700-92fc-94e36c305e3e",
"e3331584-d253-492f-b754-2e5620b6df1c"
]
}
},
{
"Id": "d6ebd9d3-dc33-4593-ad5d-cd9f2bef0577",
"ParentId": "c3cc48ee-f02b-4199-9035-57f5b82142ed",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"d108c042-6d95-4c2d-91bd-1b0578b8c5d9",
"f1bce98d-5951-430d-b4ce-e5161e03467b"
],
"Companies": [
"32473b58-bc4e-42aa-b8e1-b64132b16faa",
"42dcabb3-15d3-4ade-8b1a-66a9100a6c96"
],
"Groups": [
"d6b80d5d-de1b-4b76-93c9-2f2bb358b6b4",
"33e53eea-7794-4a62-b4d0-46632b6a6768"
],
"Opportunities": [
"c2abfd8f-3d10-4700-92fc-94e36c305e3e",
"e3331584-d253-492f-b754-2e5620b6df1c"
]
}
}
]