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": "15e62741-f340-4a4b-82bd-88f3728c4b61",
"ParentId": "8a1de21b-8e51-4eb2-9d48-9736bff7ed01",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"4800258f-a499-474a-9299-8964e33546b3",
"cbe8d5a3-c4a5-408a-8bde-a09e0ac6476b"
],
"Companies": [
"a8b537aa-a326-4fba-9162-64d7f101475c",
"a4bda783-03d3-4b22-8087-fc873b0b8b0d"
],
"Groups": [
"fe2f88ab-5bdb-4952-adf6-bc9a9c509d9a",
"40a9d763-f9d7-4158-abd5-e42d08300437"
],
"Opportunities": [
"b425bbd9-1891-423d-9285-6afa14c2770d",
"bad8bdfd-153d-450f-bacc-1341acd973f4"
]
}
},
{
"Id": "15e62741-f340-4a4b-82bd-88f3728c4b61",
"ParentId": "8a1de21b-8e51-4eb2-9d48-9736bff7ed01",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"4800258f-a499-474a-9299-8964e33546b3",
"cbe8d5a3-c4a5-408a-8bde-a09e0ac6476b"
],
"Companies": [
"a8b537aa-a326-4fba-9162-64d7f101475c",
"a4bda783-03d3-4b22-8087-fc873b0b8b0d"
],
"Groups": [
"fe2f88ab-5bdb-4952-adf6-bc9a9c509d9a",
"40a9d763-f9d7-4158-abd5-e42d08300437"
],
"Opportunities": [
"b425bbd9-1891-423d-9285-6afa14c2770d",
"bad8bdfd-153d-450f-bacc-1341acd973f4"
]
}
}
]