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": "9bbc920f-8d50-4b06-95a2-343eb32eebf7",
"ParentId": "09347254-a844-4f8b-9d9c-5c7dcd383ac6",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"1b9e1df1-88f8-4df3-a502-a0e2f8c69581",
"22f69f49-8f7b-41cb-bfac-2b9753222a0a"
],
"Companies": [
"5b5791ef-0d9d-46ba-a0d7-dc7fff022b44",
"b0937b70-e182-48f8-96b1-90161a8d2b2b"
],
"Groups": [
"076b95a0-a146-47c0-85be-a2f6cff27369",
"0b26397b-6b0c-4de6-9e9d-cfc471db50f6"
],
"Opportunities": [
"7fcfa6ef-9add-4ac1-83df-fcaf5b46db44",
"7916813a-597e-42b9-a9e5-94680622c2ea"
]
}
},
{
"Id": "9bbc920f-8d50-4b06-95a2-343eb32eebf7",
"ParentId": "09347254-a844-4f8b-9d9c-5c7dcd383ac6",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"1b9e1df1-88f8-4df3-a502-a0e2f8c69581",
"22f69f49-8f7b-41cb-bfac-2b9753222a0a"
],
"Companies": [
"5b5791ef-0d9d-46ba-a0d7-dc7fff022b44",
"b0937b70-e182-48f8-96b1-90161a8d2b2b"
],
"Groups": [
"076b95a0-a146-47c0-85be-a2f6cff27369",
"0b26397b-6b0c-4de6-9e9d-cfc471db50f6"
],
"Opportunities": [
"7fcfa6ef-9add-4ac1-83df-fcaf5b46db44",
"7916813a-597e-42b9-a9e5-94680622c2ea"
]
}
}
]