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": "2cf79118-1a40-4dac-9eef-f8cc0ef3758c",
"ParentId": "c1a8e624-c1dc-4436-8cef-c260cd884d68",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"1c624619-95fa-44ae-9cfd-c1ddee46bb1f",
"198a38bd-3c42-4e5d-a63a-7dc0a003f2e3"
],
"Companies": [
"18e9dcc1-1850-4d84-9ab4-eb25eaaaa122",
"87a8f508-33e4-47f2-92e0-305a6e308409"
],
"Groups": [
"d93f7abb-7cd0-4091-9c17-d41376597e54",
"f3855c09-8c41-4b04-b3f7-a4521888998d"
],
"Opportunities": [
"94b0646b-2966-46e6-8369-a43d6f4240c6",
"e6d01ff9-4652-4b5c-873e-d161016ee13b"
]
}
},
{
"Id": "2cf79118-1a40-4dac-9eef-f8cc0ef3758c",
"ParentId": "c1a8e624-c1dc-4436-8cef-c260cd884d68",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"1c624619-95fa-44ae-9cfd-c1ddee46bb1f",
"198a38bd-3c42-4e5d-a63a-7dc0a003f2e3"
],
"Companies": [
"18e9dcc1-1850-4d84-9ab4-eb25eaaaa122",
"87a8f508-33e4-47f2-92e0-305a6e308409"
],
"Groups": [
"d93f7abb-7cd0-4091-9c17-d41376597e54",
"f3855c09-8c41-4b04-b3f7-a4521888998d"
],
"Opportunities": [
"94b0646b-2966-46e6-8369-a43d6f4240c6",
"e6d01ff9-4652-4b5c-873e-d161016ee13b"
]
}
}
]