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": "d9cbf94a-181c-4b90-b766-bb69909bd0cb",
"ParentId": "3767ee8c-cf82-49d1-a133-debb04b05c70",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"f3ee68f0-4f05-49f3-88b6-dba3208b17e6",
"6db3b12f-c85d-4a1e-b9d2-e23c2131929e"
],
"Companies": [
"77cfc4fe-7e73-4762-bf10-d671bba72d8f",
"86368c04-1d08-4bb4-af00-6400b5b4e9d9"
],
"Groups": [
"b2571c3d-9b48-4e78-8861-b39a9427d872",
"b8e1043f-870c-4603-a272-b7212ff9201d"
],
"Opportunities": [
"e1f90843-2539-45b6-99fb-e4efed4bb4e2",
"e499bac4-74a4-401b-b1c0-18765dc1ea20"
]
}
},
{
"Id": "d9cbf94a-181c-4b90-b766-bb69909bd0cb",
"ParentId": "3767ee8c-cf82-49d1-a133-debb04b05c70",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"f3ee68f0-4f05-49f3-88b6-dba3208b17e6",
"6db3b12f-c85d-4a1e-b9d2-e23c2131929e"
],
"Companies": [
"77cfc4fe-7e73-4762-bf10-d671bba72d8f",
"86368c04-1d08-4bb4-af00-6400b5b4e9d9"
],
"Groups": [
"b2571c3d-9b48-4e78-8861-b39a9427d872",
"b8e1043f-870c-4603-a272-b7212ff9201d"
],
"Opportunities": [
"e1f90843-2539-45b6-99fb-e4efed4bb4e2",
"e499bac4-74a4-401b-b1c0-18765dc1ea20"
]
}
}
]