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": "a8b40694-9457-471b-9d7f-a4492464b5b1",
"ParentId": "775f018b-92ae-458d-a9d0-8ca357249088",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"4817c5f1-08bf-4c69-b334-2dde39a00937",
"551807d9-a279-49ea-b555-f36754b49f31"
],
"Companies": [
"eae0cd0f-48fb-4534-9dbb-c2290cd124e0",
"36fe8345-2aea-4a45-8fed-21d0e5ce206d"
],
"Groups": [
"28f353e3-be12-440f-b37b-cd9b0129e46d",
"663eac20-30e0-4d11-b70e-6e2c218c5a31"
],
"Opportunities": [
"0cd089b4-b0c9-48a4-86cb-5b3a3f98790d",
"5aee26da-3976-4a7a-9f1a-5bcd373ae6eb"
]
}
},
{
"Id": "a8b40694-9457-471b-9d7f-a4492464b5b1",
"ParentId": "775f018b-92ae-458d-a9d0-8ca357249088",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"4817c5f1-08bf-4c69-b334-2dde39a00937",
"551807d9-a279-49ea-b555-f36754b49f31"
],
"Companies": [
"eae0cd0f-48fb-4534-9dbb-c2290cd124e0",
"36fe8345-2aea-4a45-8fed-21d0e5ce206d"
],
"Groups": [
"28f353e3-be12-440f-b37b-cd9b0129e46d",
"663eac20-30e0-4d11-b70e-6e2c218c5a31"
],
"Opportunities": [
"0cd089b4-b0c9-48a4-86cb-5b3a3f98790d",
"5aee26da-3976-4a7a-9f1a-5bcd373ae6eb"
]
}
}
]