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": "b97c2541-91fe-400f-b647-92e757ea83c1",
"ParentId": "8aa35ee3-04b7-428b-a30d-77442506efa7",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"c1c04b6b-cead-4910-b1c4-934bc2c0d657",
"2f2760c9-2a91-4317-b833-722230ad6297"
],
"Companies": [
"ae933024-5b42-48ec-bf39-89dac4b8ea2e",
"f90786f6-9782-49c8-838a-9cc59974b55d"
],
"Groups": [
"7c298aa3-1d25-4e59-ae06-100038ecad34",
"d5a2b667-6992-4a4d-9af6-aedc68de32be"
],
"Opportunities": [
"845490ea-f96d-4bb1-802f-c65d4631512d",
"eb5b7289-4e1f-4781-a2a5-0215cd580fb0"
]
}
},
{
"Id": "b97c2541-91fe-400f-b647-92e757ea83c1",
"ParentId": "8aa35ee3-04b7-428b-a30d-77442506efa7",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"c1c04b6b-cead-4910-b1c4-934bc2c0d657",
"2f2760c9-2a91-4317-b833-722230ad6297"
],
"Companies": [
"ae933024-5b42-48ec-bf39-89dac4b8ea2e",
"f90786f6-9782-49c8-838a-9cc59974b55d"
],
"Groups": [
"7c298aa3-1d25-4e59-ae06-100038ecad34",
"d5a2b667-6992-4a4d-9af6-aedc68de32be"
],
"Opportunities": [
"845490ea-f96d-4bb1-802f-c65d4631512d",
"eb5b7289-4e1f-4781-a2a5-0215cd580fb0"
]
}
}
]