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": "fe85051b-1cd6-4459-b050-6c684a041631",
"ParentId": "ca60fe5c-713f-4ddc-92d6-e8caced8e382",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"ce775856-6532-4e5c-aa55-53cf65600c3a",
"4933d4eb-4bb4-481d-b2e0-80e96a37182a"
],
"Companies": [
"f5fad082-f8f9-411e-95e6-66ad39487af6",
"d2a7926e-65b9-4e31-bac4-b40f7d55820b"
],
"Groups": [
"957cad4b-af91-420d-8b89-ab8e0c219824",
"86a1cf4d-e977-4a3b-b94f-b2f654964640"
],
"Opportunities": [
"5c0b90ce-e8eb-4b82-ada3-fb111a0a064d",
"7d68d4e7-0e1d-4493-8c20-439829302681"
]
}
},
{
"Id": "fe85051b-1cd6-4459-b050-6c684a041631",
"ParentId": "ca60fe5c-713f-4ddc-92d6-e8caced8e382",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"ce775856-6532-4e5c-aa55-53cf65600c3a",
"4933d4eb-4bb4-481d-b2e0-80e96a37182a"
],
"Companies": [
"f5fad082-f8f9-411e-95e6-66ad39487af6",
"d2a7926e-65b9-4e31-bac4-b40f7d55820b"
],
"Groups": [
"957cad4b-af91-420d-8b89-ab8e0c219824",
"86a1cf4d-e977-4a3b-b94f-b2f654964640"
],
"Opportunities": [
"5c0b90ce-e8eb-4b82-ada3-fb111a0a064d",
"7d68d4e7-0e1d-4493-8c20-439829302681"
]
}
}
]