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": "61fec146-88ef-4402-bdb3-d5225af2c48e",
"ParentId": "849d8fb0-a34a-4784-9645-4ccdd12575df",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"9a1b3105-7f71-4a15-9c19-e9312230c1d4",
"fed45275-f9b8-404e-97a1-717b4744aac8"
],
"Companies": [
"d01afb37-59ca-451c-9d4b-9bcc5536a294",
"d956fbfe-ff44-45a8-a0ce-29b7b09515e5"
],
"Groups": [
"0a9dd55c-8f18-4664-8f14-db8f2142313a",
"d72fadfe-ddc9-4586-b03c-7ce046de0805"
],
"Opportunities": [
"6f269587-32c3-4dbb-b452-64460cb3027d",
"27756779-9c94-4327-bf25-6c6f1a27ccf4"
]
}
},
{
"Id": "61fec146-88ef-4402-bdb3-d5225af2c48e",
"ParentId": "849d8fb0-a34a-4784-9645-4ccdd12575df",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"9a1b3105-7f71-4a15-9c19-e9312230c1d4",
"fed45275-f9b8-404e-97a1-717b4744aac8"
],
"Companies": [
"d01afb37-59ca-451c-9d4b-9bcc5536a294",
"d956fbfe-ff44-45a8-a0ce-29b7b09515e5"
],
"Groups": [
"0a9dd55c-8f18-4664-8f14-db8f2142313a",
"d72fadfe-ddc9-4586-b03c-7ce046de0805"
],
"Opportunities": [
"6f269587-32c3-4dbb-b452-64460cb3027d",
"27756779-9c94-4327-bf25-6c6f1a27ccf4"
]
}
}
]