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": "b4c54c13-1dcb-4b6d-b6e8-6e932b56f2e4",
"ParentId": "13713d2f-95ee-4f7b-8de0-2c736e3326f8",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"f6d5e7ac-4617-405f-b892-be0ebbd3a705",
"c036c880-3de9-4116-a780-c94978a1a805"
],
"Companies": [
"06e7e878-bc21-4a2c-97e9-aafd4ce2c999",
"0c545b3f-e695-4a6e-a017-d27e4c9fe429"
],
"Groups": [
"9550cab1-a12d-463f-a915-11c5d39d98ed",
"6ea7be63-795b-4f41-bc51-c03b570bcd6b"
],
"Opportunities": [
"4f2950ee-aa07-4dd4-b82e-0c8b5c6e35b8",
"c2c7a181-e701-4fae-9a92-9d596c20176b"
]
}
},
{
"Id": "b4c54c13-1dcb-4b6d-b6e8-6e932b56f2e4",
"ParentId": "13713d2f-95ee-4f7b-8de0-2c736e3326f8",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"f6d5e7ac-4617-405f-b892-be0ebbd3a705",
"c036c880-3de9-4116-a780-c94978a1a805"
],
"Companies": [
"06e7e878-bc21-4a2c-97e9-aafd4ce2c999",
"0c545b3f-e695-4a6e-a017-d27e4c9fe429"
],
"Groups": [
"9550cab1-a12d-463f-a915-11c5d39d98ed",
"6ea7be63-795b-4f41-bc51-c03b570bcd6b"
],
"Opportunities": [
"4f2950ee-aa07-4dd4-b82e-0c8b5c6e35b8",
"c2c7a181-e701-4fae-9a92-9d596c20176b"
]
}
}
]