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": "d5dd17ff-23d1-4856-874d-e437ede4f371",
"ParentId": "d27d524b-9b04-4783-b19c-70c804e13134",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"287e2815-b3f1-43a8-b2a1-1015303824e7",
"a4db3c10-bd4c-4b3b-ae67-c58ccbfc067f"
],
"Companies": [
"83900aa0-a6e0-414a-b3f9-520d8ad21839",
"7be68a36-3ec6-4d93-98b1-06d8536783dd"
],
"Groups": [
"c1844f56-8c9b-4baf-a803-d91fd0efea69",
"099db517-692e-42ff-b46e-1bbd579ee861"
],
"Opportunities": [
"0a2f8e2f-dd04-4cd3-b190-b221390ed4b8",
"19f9b5c0-723d-452c-9e08-3b976f7b048a"
]
}
},
{
"Id": "d5dd17ff-23d1-4856-874d-e437ede4f371",
"ParentId": "d27d524b-9b04-4783-b19c-70c804e13134",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"287e2815-b3f1-43a8-b2a1-1015303824e7",
"a4db3c10-bd4c-4b3b-ae67-c58ccbfc067f"
],
"Companies": [
"83900aa0-a6e0-414a-b3f9-520d8ad21839",
"7be68a36-3ec6-4d93-98b1-06d8536783dd"
],
"Groups": [
"c1844f56-8c9b-4baf-a803-d91fd0efea69",
"099db517-692e-42ff-b46e-1bbd579ee861"
],
"Opportunities": [
"0a2f8e2f-dd04-4cd3-b190-b221390ed4b8",
"19f9b5c0-723d-452c-9e08-3b976f7b048a"
]
}
}
]