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": "c2441b77-f9f4-4fcb-8329-20eafb22149f",
"ParentId": "450b8eef-1b80-4ec0-83c0-8a4aa732d7ac",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"d856ea12-d7f5-4844-b1d4-d224805e081f",
"950ded2d-1d84-4d2e-a186-3f25a5b38285"
],
"Companies": [
"56ed6cae-df57-45a4-8603-707e12b3f096",
"0cf2c784-05e5-4a20-9321-24e1790c6820"
],
"Groups": [
"041a21ed-e5b7-485a-aa91-dc34749a5cd3",
"c8695a4c-b30b-41cd-8bba-af13f5909e81"
],
"Opportunities": [
"483c6f7d-bfd1-4cfd-9281-7d37477fd7c1",
"33ca5a31-194e-4f15-9485-56d3cdd73a38"
]
}
},
{
"Id": "c2441b77-f9f4-4fcb-8329-20eafb22149f",
"ParentId": "450b8eef-1b80-4ec0-83c0-8a4aa732d7ac",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"d856ea12-d7f5-4844-b1d4-d224805e081f",
"950ded2d-1d84-4d2e-a186-3f25a5b38285"
],
"Companies": [
"56ed6cae-df57-45a4-8603-707e12b3f096",
"0cf2c784-05e5-4a20-9321-24e1790c6820"
],
"Groups": [
"041a21ed-e5b7-485a-aa91-dc34749a5cd3",
"c8695a4c-b30b-41cd-8bba-af13f5909e81"
],
"Opportunities": [
"483c6f7d-bfd1-4cfd-9281-7d37477fd7c1",
"33ca5a31-194e-4f15-9485-56d3cdd73a38"
]
}
}
]