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": "99c03d8a-a196-4eb1-bb57-7d32d28eba57",
"ParentId": "bd53230a-8900-4cf8-91c2-cf85f5683d5a",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"caf2070f-3386-43ec-b9eb-3a3265775602",
"ed8d20d1-9ce8-4fcc-80d5-530415321719"
],
"Companies": [
"aeb63ef5-d50e-4df9-b90d-c3c79628337c",
"cdc4fc1b-35bf-4f62-ae74-699160398f3c"
],
"Groups": [
"7658cf94-b566-446d-a713-566cead8bf22",
"9da9a044-a7dc-47ce-b8d4-62a4c89823dc"
],
"Opportunities": [
"d6ebc1ed-2432-4759-9611-4d30486702ad",
"9af5d63a-ef27-4c52-8567-5125c1a1afc8"
]
}
},
{
"Id": "99c03d8a-a196-4eb1-bb57-7d32d28eba57",
"ParentId": "bd53230a-8900-4cf8-91c2-cf85f5683d5a",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"caf2070f-3386-43ec-b9eb-3a3265775602",
"ed8d20d1-9ce8-4fcc-80d5-530415321719"
],
"Companies": [
"aeb63ef5-d50e-4df9-b90d-c3c79628337c",
"cdc4fc1b-35bf-4f62-ae74-699160398f3c"
],
"Groups": [
"7658cf94-b566-446d-a713-566cead8bf22",
"9da9a044-a7dc-47ce-b8d4-62a4c89823dc"
],
"Opportunities": [
"d6ebc1ed-2432-4759-9611-4d30486702ad",
"9af5d63a-ef27-4c52-8567-5125c1a1afc8"
]
}
}
]