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": "798b2d05-3478-463c-a85d-01c057014aa5",
"ParentId": "99e8a5ca-1831-4e61-b0b8-d2fb9073533a",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"277577bb-86dd-4a19-aab7-402a11668d3b",
"68853664-5acd-4ab2-9f3a-467526b177c0"
],
"Companies": [
"b8454a85-ff35-40c7-88f7-66a495138a7f",
"c673d2a8-56bf-4e4c-a3fa-fdc1e9a45560"
],
"Groups": [
"5c4e86b0-c9d9-41f7-a2f6-4cb53f47dc01",
"23c2e25a-62c9-411c-99e9-abdd9aaf36d8"
],
"Opportunities": [
"fb21349a-47e0-43df-9ea1-d74a2e4588c0",
"18760105-450d-4577-8778-f027a4b712b2"
]
}
},
{
"Id": "798b2d05-3478-463c-a85d-01c057014aa5",
"ParentId": "99e8a5ca-1831-4e61-b0b8-d2fb9073533a",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"277577bb-86dd-4a19-aab7-402a11668d3b",
"68853664-5acd-4ab2-9f3a-467526b177c0"
],
"Companies": [
"b8454a85-ff35-40c7-88f7-66a495138a7f",
"c673d2a8-56bf-4e4c-a3fa-fdc1e9a45560"
],
"Groups": [
"5c4e86b0-c9d9-41f7-a2f6-4cb53f47dc01",
"23c2e25a-62c9-411c-99e9-abdd9aaf36d8"
],
"Opportunities": [
"fb21349a-47e0-43df-9ea1-d74a2e4588c0",
"18760105-450d-4577-8778-f027a4b712b2"
]
}
}
]