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": "e9effb48-f19a-4b4e-b511-7fbb79601089",
"ParentId": "34742dc5-eb56-42d4-bdb1-ac8718aa5ea2",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"2eb3c3e4-6072-4f05-9831-1415bd6e0bcc",
"2ceff41f-7a89-430a-970d-9ce198e81718"
],
"Companies": [
"bddb1c8c-d2ce-4c6b-8c0a-6f053d7093e9",
"834f294c-7cb5-442c-b642-b9e45fdc2c0b"
],
"Groups": [
"cacc05e7-e874-45b4-b583-34f48465ad15",
"e0745594-758f-4287-bb86-2e01149e243f"
],
"Opportunities": [
"dff22fe4-53cb-4e04-bdba-6d56671fdc4c",
"95a82b92-2c40-4173-aba6-38bf7cc9b802"
]
}
},
{
"Id": "e9effb48-f19a-4b4e-b511-7fbb79601089",
"ParentId": "34742dc5-eb56-42d4-bdb1-ac8718aa5ea2",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"2eb3c3e4-6072-4f05-9831-1415bd6e0bcc",
"2ceff41f-7a89-430a-970d-9ce198e81718"
],
"Companies": [
"bddb1c8c-d2ce-4c6b-8c0a-6f053d7093e9",
"834f294c-7cb5-442c-b642-b9e45fdc2c0b"
],
"Groups": [
"cacc05e7-e874-45b4-b583-34f48465ad15",
"e0745594-758f-4287-bb86-2e01149e243f"
],
"Opportunities": [
"dff22fe4-53cb-4e04-bdba-6d56671fdc4c",
"95a82b92-2c40-4173-aba6-38bf7cc9b802"
]
}
}
]