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": "3ae49beb-d37d-4d61-b6d6-150298999eb8",
"ParentId": "2667b675-3ab4-421d-a566-7bfe8d8973d1",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"8d8d6694-a062-4dd7-887e-5aba474ee565",
"65c29f7b-9798-40ee-8870-093efd2bf945"
],
"Companies": [
"a0879784-9423-4fef-861c-07c5df4860cc",
"ac5820d8-035a-4932-9bc5-5cde68d7566e"
],
"Groups": [
"4c0bb681-b011-48e0-bf8c-0e5e799cb583",
"15ca4f65-fcf5-420b-907b-16dc7fc8db8a"
],
"Opportunities": [
"1b54b7eb-1a4d-49f6-8b9c-c7c9e1e17017",
"b5de89d0-7991-46e5-9ec8-ca80d9160f8b"
]
}
},
{
"Id": "3ae49beb-d37d-4d61-b6d6-150298999eb8",
"ParentId": "2667b675-3ab4-421d-a566-7bfe8d8973d1",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"8d8d6694-a062-4dd7-887e-5aba474ee565",
"65c29f7b-9798-40ee-8870-093efd2bf945"
],
"Companies": [
"a0879784-9423-4fef-861c-07c5df4860cc",
"ac5820d8-035a-4932-9bc5-5cde68d7566e"
],
"Groups": [
"4c0bb681-b011-48e0-bf8c-0e5e799cb583",
"15ca4f65-fcf5-420b-907b-16dc7fc8db8a"
],
"Opportunities": [
"1b54b7eb-1a4d-49f6-8b9c-c7c9e1e17017",
"b5de89d0-7991-46e5-9ec8-ca80d9160f8b"
]
}
}
]