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": "3179a6b6-63a1-4e26-a13b-74082cb214e8",
"ParentId": "139a6456-299f-408c-bb55-e9411c53bb35",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"9afe5e4c-e908-41c9-b0e9-d6230407454c",
"8f73160b-b7d3-48f2-9304-d1be9d541145"
],
"Companies": [
"40c082e0-5711-4048-a3f0-6f7cf0db592d",
"1e5caefa-9867-4926-b2a4-6426d4816f41"
],
"Groups": [
"405f35fc-17bb-4ae1-ab6b-1ed0212ce3b2",
"9d220705-5ca6-43b8-b1a7-ccc1abe01838"
],
"Opportunities": [
"2b816bfa-6bd4-45fe-808f-6747472f9aa4",
"ff6946d3-0453-4608-8587-0986cdd2ca5f"
]
}
},
{
"Id": "3179a6b6-63a1-4e26-a13b-74082cb214e8",
"ParentId": "139a6456-299f-408c-bb55-e9411c53bb35",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"9afe5e4c-e908-41c9-b0e9-d6230407454c",
"8f73160b-b7d3-48f2-9304-d1be9d541145"
],
"Companies": [
"40c082e0-5711-4048-a3f0-6f7cf0db592d",
"1e5caefa-9867-4926-b2a4-6426d4816f41"
],
"Groups": [
"405f35fc-17bb-4ae1-ab6b-1ed0212ce3b2",
"9d220705-5ca6-43b8-b1a7-ccc1abe01838"
],
"Opportunities": [
"2b816bfa-6bd4-45fe-808f-6747472f9aa4",
"ff6946d3-0453-4608-8587-0986cdd2ca5f"
]
}
}
]