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": "4a7aa6b8-020e-48de-93fc-78116ca92f55",
"ParentId": "839c93cf-241b-4943-8296-98532fb822ea",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"fe07d186-031b-461d-a658-0a9b58044e18",
"e81d41b7-ac76-4e42-a4b1-a7d8c4c91972"
],
"Companies": [
"30a4df40-ff35-4a05-9b1e-68393c361298",
"8325c6a9-86cc-42dd-9ed5-1effd2d4950f"
],
"Groups": [
"6aeeb432-307c-4210-b171-6d4dba0661fc",
"9f9d1717-c5fc-4c1a-8a37-73f461f555b4"
],
"Opportunities": [
"3d82523c-6487-4189-bd2e-3a7815993c4a",
"c57ed359-3745-4b49-b695-1f33198621bc"
]
}
},
{
"Id": "4a7aa6b8-020e-48de-93fc-78116ca92f55",
"ParentId": "839c93cf-241b-4943-8296-98532fb822ea",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"fe07d186-031b-461d-a658-0a9b58044e18",
"e81d41b7-ac76-4e42-a4b1-a7d8c4c91972"
],
"Companies": [
"30a4df40-ff35-4a05-9b1e-68393c361298",
"8325c6a9-86cc-42dd-9ed5-1effd2d4950f"
],
"Groups": [
"6aeeb432-307c-4210-b171-6d4dba0661fc",
"9f9d1717-c5fc-4c1a-8a37-73f461f555b4"
],
"Opportunities": [
"3d82523c-6487-4189-bd2e-3a7815993c4a",
"c57ed359-3745-4b49-b695-1f33198621bc"
]
}
}
]