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": "5bc02af2-63b3-4725-966a-05fc941fed51",
"ParentId": "707ea529-a045-4bb9-bfab-f649f5b08048",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"bca94aa5-85eb-4037-965d-3fb5ef810cc3",
"abb4afc7-45be-44cd-b574-46459a87f829"
],
"Companies": [
"44a7371c-dda6-4662-8567-c934c48d1558",
"d47fedd1-c47d-4e40-8327-ea965957dbf0"
],
"Groups": [
"fbcf99f3-952b-4ef5-a859-ac5e75b782a8",
"51affd97-f0d4-4598-b481-24ee920e8921"
],
"Opportunities": [
"69b0d6be-9a15-4834-b74e-f78ce5f66c80",
"3b82e70c-0367-493e-8756-ba2cbfbf8e54"
]
}
},
{
"Id": "5bc02af2-63b3-4725-966a-05fc941fed51",
"ParentId": "707ea529-a045-4bb9-bfab-f649f5b08048",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"bca94aa5-85eb-4037-965d-3fb5ef810cc3",
"abb4afc7-45be-44cd-b574-46459a87f829"
],
"Companies": [
"44a7371c-dda6-4662-8567-c934c48d1558",
"d47fedd1-c47d-4e40-8327-ea965957dbf0"
],
"Groups": [
"fbcf99f3-952b-4ef5-a859-ac5e75b782a8",
"51affd97-f0d4-4598-b481-24ee920e8921"
],
"Opportunities": [
"69b0d6be-9a15-4834-b74e-f78ce5f66c80",
"3b82e70c-0367-493e-8756-ba2cbfbf8e54"
]
}
}
]