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": "895fa2f8-c051-4c4d-b667-693b5a37bafb",
"ParentId": "81355675-b4db-4bab-88e5-54a6373d194a",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"62ad04dd-007e-4628-9e1a-41488a5bad99",
"dc1aaab1-37a8-46d1-89b0-bd5e92f1468b"
],
"Companies": [
"a551d5df-8d87-4188-91a1-e17e465436fd",
"76a8b443-41a4-4da5-b0fb-013f4217c3f4"
],
"Groups": [
"fb76eabd-5d47-4ee4-a346-bfffe8b347ca",
"8d707a30-6bf5-42c0-a202-1afe6201bf99"
],
"Opportunities": [
"0c238412-27c5-4e31-a7e3-29ddf12719f5",
"33561a7e-b304-4775-ba3e-8cbc273fece6"
]
}
},
{
"Id": "895fa2f8-c051-4c4d-b667-693b5a37bafb",
"ParentId": "81355675-b4db-4bab-88e5-54a6373d194a",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"62ad04dd-007e-4628-9e1a-41488a5bad99",
"dc1aaab1-37a8-46d1-89b0-bd5e92f1468b"
],
"Companies": [
"a551d5df-8d87-4188-91a1-e17e465436fd",
"76a8b443-41a4-4da5-b0fb-013f4217c3f4"
],
"Groups": [
"fb76eabd-5d47-4ee4-a346-bfffe8b347ca",
"8d707a30-6bf5-42c0-a202-1afe6201bf99"
],
"Opportunities": [
"0c238412-27c5-4e31-a7e3-29ddf12719f5",
"33561a7e-b304-4775-ba3e-8cbc273fece6"
]
}
}
]