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": "793715bc-c803-4486-840f-959aa515a291",
"ParentId": "34d783e6-55a4-49a4-909d-42165c005a60",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"4b812cd7-fdad-4a4f-8c80-77f6360fe8a0",
"e51d45f8-386e-47c1-968c-568069c947c3"
],
"Companies": [
"c4e5e8a6-0985-47b9-afab-e3cf73ae3fcf",
"b045ab35-9364-4eac-b2cb-d4b9b8b713c8"
],
"Groups": [
"74896695-a7c6-4fa1-97f5-570b75e07e7c",
"2b7182b6-e451-4a40-b6d3-4eb83fb3eb9c"
],
"Opportunities": [
"026ad9eb-b99b-434f-8660-af6686b4c4f9",
"4d4f6599-60ea-49d7-858f-8a8a9cb00127"
]
}
},
{
"Id": "793715bc-c803-4486-840f-959aa515a291",
"ParentId": "34d783e6-55a4-49a4-909d-42165c005a60",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"4b812cd7-fdad-4a4f-8c80-77f6360fe8a0",
"e51d45f8-386e-47c1-968c-568069c947c3"
],
"Companies": [
"c4e5e8a6-0985-47b9-afab-e3cf73ae3fcf",
"b045ab35-9364-4eac-b2cb-d4b9b8b713c8"
],
"Groups": [
"74896695-a7c6-4fa1-97f5-570b75e07e7c",
"2b7182b6-e451-4a40-b6d3-4eb83fb3eb9c"
],
"Opportunities": [
"026ad9eb-b99b-434f-8660-af6686b4c4f9",
"4d4f6599-60ea-49d7-858f-8a8a9cb00127"
]
}
}
]