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": "58fee09a-bb23-4445-9554-3ff248f24377",
"ParentId": "f6b507f1-e0c9-4523-b061-629baba0eeb4",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"b4cbe69b-677b-484e-8dd6-aad6f4aeaf96",
"a7f65fc0-b308-43c0-9282-e82298551d9e"
],
"Companies": [
"440565e7-7359-4135-9976-9b978b21af7f",
"9251ee56-da33-4c31-8528-8d96ceb1dc7d"
],
"Groups": [
"879a32fd-581d-45f3-a8cb-17fb88a8e9d2",
"a097beac-252d-4fff-afc5-627472f3e716"
],
"Opportunities": [
"1bed8c8d-876f-4417-85a5-86d1c4cc5d7b",
"22e2221a-f4d2-4e9f-9d11-98da530a13b2"
]
}
},
{
"Id": "58fee09a-bb23-4445-9554-3ff248f24377",
"ParentId": "f6b507f1-e0c9-4523-b061-629baba0eeb4",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"b4cbe69b-677b-484e-8dd6-aad6f4aeaf96",
"a7f65fc0-b308-43c0-9282-e82298551d9e"
],
"Companies": [
"440565e7-7359-4135-9976-9b978b21af7f",
"9251ee56-da33-4c31-8528-8d96ceb1dc7d"
],
"Groups": [
"879a32fd-581d-45f3-a8cb-17fb88a8e9d2",
"a097beac-252d-4fff-afc5-627472f3e716"
],
"Opportunities": [
"1bed8c8d-876f-4417-85a5-86d1c4cc5d7b",
"22e2221a-f4d2-4e9f-9d11-98da530a13b2"
]
}
}
]