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": "3777e0a1-df12-4b53-b281-5ce0bf16d653",
"ParentId": "ff709d2b-6c13-41eb-8939-b8d919890896",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"4d93fd7c-435a-49a4-bcec-4614e4de7720",
"a473a44a-af57-4ed0-9df3-82f5bd0a4087"
],
"Companies": [
"c027beba-ba16-4e23-a7e9-147db12ca044",
"9909f142-0145-4a41-b1bf-3d25520b84ee"
],
"Groups": [
"bc5c0cf2-b4a4-4b07-8f35-91f89d11f0d3",
"2ae5addd-f3b9-43c6-9723-c4d9ea51f9ec"
],
"Opportunities": [
"e27bb847-9320-4678-9013-893899697d61",
"111ca4ab-2875-4c2a-93dc-3ad952c86ca7"
]
}
},
{
"Id": "3777e0a1-df12-4b53-b281-5ce0bf16d653",
"ParentId": "ff709d2b-6c13-41eb-8939-b8d919890896",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"4d93fd7c-435a-49a4-bcec-4614e4de7720",
"a473a44a-af57-4ed0-9df3-82f5bd0a4087"
],
"Companies": [
"c027beba-ba16-4e23-a7e9-147db12ca044",
"9909f142-0145-4a41-b1bf-3d25520b84ee"
],
"Groups": [
"bc5c0cf2-b4a4-4b07-8f35-91f89d11f0d3",
"2ae5addd-f3b9-43c6-9723-c4d9ea51f9ec"
],
"Opportunities": [
"e27bb847-9320-4678-9013-893899697d61",
"111ca4ab-2875-4c2a-93dc-3ad952c86ca7"
]
}
}
]