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": "6f7a58e7-3885-4df4-8c56-53935a6ecc00",
"ParentId": "601f117b-4a4b-4362-bbbb-a158bb2c1f36",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"3a6d5631-046c-4181-928f-8ed2f2a35c53",
"6382af75-e705-444c-a7b8-139fa7cfaab5"
],
"Companies": [
"56a7411e-0918-4c99-ba3b-8abe1972e7ae",
"654dab75-04ea-4e80-8c16-2781b940e642"
],
"Groups": [
"ee0b66a0-0778-40d5-8824-21bbf935bb54",
"b6d9ae88-2d8a-4fe4-bd08-aa9071b21d0f"
],
"Opportunities": [
"e2cc5d8a-93da-4fbc-8d9e-5f1661df4820",
"c338fbdc-e16f-4b47-a81d-c4fb0b4dbd85"
]
}
},
{
"Id": "6f7a58e7-3885-4df4-8c56-53935a6ecc00",
"ParentId": "601f117b-4a4b-4362-bbbb-a158bb2c1f36",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"3a6d5631-046c-4181-928f-8ed2f2a35c53",
"6382af75-e705-444c-a7b8-139fa7cfaab5"
],
"Companies": [
"56a7411e-0918-4c99-ba3b-8abe1972e7ae",
"654dab75-04ea-4e80-8c16-2781b940e642"
],
"Groups": [
"ee0b66a0-0778-40d5-8824-21bbf935bb54",
"b6d9ae88-2d8a-4fe4-bd08-aa9071b21d0f"
],
"Opportunities": [
"e2cc5d8a-93da-4fbc-8d9e-5f1661df4820",
"c338fbdc-e16f-4b47-a81d-c4fb0b4dbd85"
]
}
}
]