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": "84789931-6665-4606-a53a-feb4e4ee2deb",
"ParentId": "1d386abd-26b3-4990-9840-8d1a9cba59ec",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"371ccf64-e4e7-40aa-b901-d86a0d4331d0",
"a9fafd84-d74c-4733-9418-d6d8262c2dcb"
],
"Companies": [
"1cfda487-0afc-49ca-9d68-f3682495c852",
"62639afd-d742-42d7-b1db-8f80f74639d2"
],
"Groups": [
"ca8df16f-dc3d-4db8-a74c-f1607aea03ee",
"9ad1d720-7cf6-4bc3-95d9-33699b4a327b"
],
"Opportunities": [
"115d639e-1ced-4707-8482-611c6eb7e070",
"47b76656-31bb-4cd7-b1b3-6328157cb0a6"
]
}
},
{
"Id": "84789931-6665-4606-a53a-feb4e4ee2deb",
"ParentId": "1d386abd-26b3-4990-9840-8d1a9cba59ec",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"371ccf64-e4e7-40aa-b901-d86a0d4331d0",
"a9fafd84-d74c-4733-9418-d6d8262c2dcb"
],
"Companies": [
"1cfda487-0afc-49ca-9d68-f3682495c852",
"62639afd-d742-42d7-b1db-8f80f74639d2"
],
"Groups": [
"ca8df16f-dc3d-4db8-a74c-f1607aea03ee",
"9ad1d720-7cf6-4bc3-95d9-33699b4a327b"
],
"Opportunities": [
"115d639e-1ced-4707-8482-611c6eb7e070",
"47b76656-31bb-4cd7-b1b3-6328157cb0a6"
]
}
}
]