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": "c5ed2a2d-ba28-45a1-9bf6-56322d116a8c",
"ParentId": "46e4ac20-dd07-45a7-ac1c-e2c24a8167dd",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"317ebe2e-d06e-4217-8ff8-b46c184cd061",
"4aabcdb4-83ae-4b64-9efb-b341b1f81a61"
],
"Companies": [
"9a79de06-0ba2-465a-b5f7-f9227df6e372",
"1981e1b6-a7cf-46d8-bdb8-57280e4f1813"
],
"Groups": [
"70d0b115-8ddb-4378-a743-07dfecb5dcf8",
"9a5cad40-fc8b-4b6f-9729-239b4ef18042"
],
"Opportunities": [
"0ead0d9b-88f1-461b-bb1e-104dd3778080",
"63c9613f-0cc6-4198-b864-1109733ae6e3"
]
}
},
{
"Id": "c5ed2a2d-ba28-45a1-9bf6-56322d116a8c",
"ParentId": "46e4ac20-dd07-45a7-ac1c-e2c24a8167dd",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"317ebe2e-d06e-4217-8ff8-b46c184cd061",
"4aabcdb4-83ae-4b64-9efb-b341b1f81a61"
],
"Companies": [
"9a79de06-0ba2-465a-b5f7-f9227df6e372",
"1981e1b6-a7cf-46d8-bdb8-57280e4f1813"
],
"Groups": [
"70d0b115-8ddb-4378-a743-07dfecb5dcf8",
"9a5cad40-fc8b-4b6f-9729-239b4ef18042"
],
"Opportunities": [
"0ead0d9b-88f1-461b-bb1e-104dd3778080",
"63c9613f-0cc6-4198-b864-1109733ae6e3"
]
}
}
]