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": "8226a39e-cc66-4178-933d-c0484aeae43c",
"ParentId": "a32016d8-b09b-4f4d-a2ab-aa3d3249d2ed",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"7e97c55c-44f6-49ad-acea-576d31f6dfcf",
"04db2e68-a780-43db-af3c-c37436cf77ab"
],
"Companies": [
"25ab4de2-fad7-4657-960f-5105ab46cc15",
"c58791bb-f7b3-4c0c-bd2b-6001e7de74fc"
],
"Groups": [
"7b2284a8-4966-4bf1-b4a5-1965e2d3c373",
"134723d5-caa3-4be8-bb2d-e5d9752679ee"
],
"Opportunities": [
"9cf3f60d-b47b-446d-ad7f-9a120e5a3db5",
"e16360ba-affa-4c7a-8d09-29adddd57549"
]
}
},
{
"Id": "8226a39e-cc66-4178-933d-c0484aeae43c",
"ParentId": "a32016d8-b09b-4f4d-a2ab-aa3d3249d2ed",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"7e97c55c-44f6-49ad-acea-576d31f6dfcf",
"04db2e68-a780-43db-af3c-c37436cf77ab"
],
"Companies": [
"25ab4de2-fad7-4657-960f-5105ab46cc15",
"c58791bb-f7b3-4c0c-bd2b-6001e7de74fc"
],
"Groups": [
"7b2284a8-4966-4bf1-b4a5-1965e2d3c373",
"134723d5-caa3-4be8-bb2d-e5d9752679ee"
],
"Opportunities": [
"9cf3f60d-b47b-446d-ad7f-9a120e5a3db5",
"e16360ba-affa-4c7a-8d09-29adddd57549"
]
}
}
]