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": "0e1531c5-a0a8-4c18-ab1e-7e34a758255e",
"ParentId": "98784bc2-3cb6-4699-89de-ba9012947d82",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"ad3cf276-b931-464c-83f6-cb5747f8609d",
"a6d41d07-a24e-45cc-bdda-469869255b71"
],
"Companies": [
"af8d392a-1062-4b55-8f11-d5644beaad82",
"333186a1-b052-470c-bd03-e59fd722d29d"
],
"Groups": [
"007b0283-6358-4868-9ccb-fbc61a763367",
"1e9c579b-5efc-4365-8838-26019bf36151"
],
"Opportunities": [
"83dc7163-ce41-40c2-9d76-80662609935d",
"3b708684-8f84-4d2d-be92-a4bfe7bd1c38"
]
}
},
{
"Id": "0e1531c5-a0a8-4c18-ab1e-7e34a758255e",
"ParentId": "98784bc2-3cb6-4699-89de-ba9012947d82",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"ad3cf276-b931-464c-83f6-cb5747f8609d",
"a6d41d07-a24e-45cc-bdda-469869255b71"
],
"Companies": [
"af8d392a-1062-4b55-8f11-d5644beaad82",
"333186a1-b052-470c-bd03-e59fd722d29d"
],
"Groups": [
"007b0283-6358-4868-9ccb-fbc61a763367",
"1e9c579b-5efc-4365-8838-26019bf36151"
],
"Opportunities": [
"83dc7163-ce41-40c2-9d76-80662609935d",
"3b708684-8f84-4d2d-be92-a4bfe7bd1c38"
]
}
}
]