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": "374d970a-5acd-45bb-8a94-f3033d027287",
"ParentId": "b2207d66-8a0b-44f3-9139-46ce421925c0",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"1700325b-b5ec-42ac-8315-1d53f468b336",
"54294b92-3554-49bf-a7f8-3a99d46d3f5b"
],
"Companies": [
"c0a8ca84-34d5-4513-b19b-0966b7beddc9",
"8717cdb8-e1d7-486f-b44c-753c842cdf22"
],
"Groups": [
"b16d2958-502d-4e3e-8d21-fb06a4f0833e",
"4b31a6f5-3096-4b4c-9e28-d10af1f3987f"
],
"Opportunities": [
"0ca35d3e-a68d-43c2-b9eb-46fe1761297c",
"cfadd186-0303-4633-927c-7a2ed79ba056"
]
}
},
{
"Id": "374d970a-5acd-45bb-8a94-f3033d027287",
"ParentId": "b2207d66-8a0b-44f3-9139-46ce421925c0",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"1700325b-b5ec-42ac-8315-1d53f468b336",
"54294b92-3554-49bf-a7f8-3a99d46d3f5b"
],
"Companies": [
"c0a8ca84-34d5-4513-b19b-0966b7beddc9",
"8717cdb8-e1d7-486f-b44c-753c842cdf22"
],
"Groups": [
"b16d2958-502d-4e3e-8d21-fb06a4f0833e",
"4b31a6f5-3096-4b4c-9e28-d10af1f3987f"
],
"Opportunities": [
"0ca35d3e-a68d-43c2-b9eb-46fe1761297c",
"cfadd186-0303-4633-927c-7a2ed79ba056"
]
}
}
]