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": "249ae38c-eb74-4262-b6e8-4026c748c0f6",
"ParentId": "7ce08f60-1709-48d5-82bc-9bb4fedabc1d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"1b7106cf-2e22-4648-8718-34f6684c6e9f",
"a65c0e1c-bf86-44f2-b0c7-e675f648df96"
],
"Companies": [
"a596aa27-0cb8-46f1-b632-1a6af7ad9c88",
"81ca66c0-e6af-40ea-b650-dc963bf6ecbc"
],
"Groups": [
"95ea3a4d-116f-47b5-85b3-359a4e1fb3b3",
"0c11f54b-3dea-4e76-9e7f-3279005e6729"
],
"Opportunities": [
"22d77dba-3b1c-484f-8032-b9353df7df58",
"ab06f7e7-56c6-4ca9-b264-e766395e63f7"
]
}
},
{
"Id": "249ae38c-eb74-4262-b6e8-4026c748c0f6",
"ParentId": "7ce08f60-1709-48d5-82bc-9bb4fedabc1d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"1b7106cf-2e22-4648-8718-34f6684c6e9f",
"a65c0e1c-bf86-44f2-b0c7-e675f648df96"
],
"Companies": [
"a596aa27-0cb8-46f1-b632-1a6af7ad9c88",
"81ca66c0-e6af-40ea-b650-dc963bf6ecbc"
],
"Groups": [
"95ea3a4d-116f-47b5-85b3-359a4e1fb3b3",
"0c11f54b-3dea-4e76-9e7f-3279005e6729"
],
"Opportunities": [
"22d77dba-3b1c-484f-8032-b9353df7df58",
"ab06f7e7-56c6-4ca9-b264-e766395e63f7"
]
}
}
]