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": "c33fce42-a043-4db8-b0af-e0bf8fe6793c",
"ParentId": "348cd698-7e3a-4ba8-9253-7b846df5535a",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"4457f32d-5f29-4c77-a472-e385a96b7c7b",
"039c5658-95ac-4292-919c-e4accb5771b9"
],
"Companies": [
"18d13a2a-6027-4686-ba51-67f8636ba3ea",
"8a745889-2b3f-4ae7-a750-e1ee43cfdc54"
],
"Groups": [
"af24f863-b5e8-43fa-a442-96717ed82036",
"6aa79aa4-1399-4c55-bc78-01d6be14c9ac"
],
"Opportunities": [
"dec149ba-63a4-484b-b236-e4b70a860581",
"00801dfc-f504-40df-bc75-7cab1f6fb535"
]
}
},
{
"Id": "c33fce42-a043-4db8-b0af-e0bf8fe6793c",
"ParentId": "348cd698-7e3a-4ba8-9253-7b846df5535a",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"4457f32d-5f29-4c77-a472-e385a96b7c7b",
"039c5658-95ac-4292-919c-e4accb5771b9"
],
"Companies": [
"18d13a2a-6027-4686-ba51-67f8636ba3ea",
"8a745889-2b3f-4ae7-a750-e1ee43cfdc54"
],
"Groups": [
"af24f863-b5e8-43fa-a442-96717ed82036",
"6aa79aa4-1399-4c55-bc78-01d6be14c9ac"
],
"Opportunities": [
"dec149ba-63a4-484b-b236-e4b70a860581",
"00801dfc-f504-40df-bc75-7cab1f6fb535"
]
}
}
]