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": "be187666-19f7-4976-b9f5-28a95ee8b7aa",
"ParentId": "8b5183d2-38d3-415c-a20b-f5f8fc0f2fca",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"5ef04481-c806-4608-9d57-5141500ce943",
"5c9bae0a-710f-4a0d-9859-98d01778f887"
],
"Companies": [
"45e75e7f-1c12-48c5-810f-918d38455d62",
"6e968ff9-b710-402d-be55-bc7e773e7e27"
],
"Groups": [
"f9af4db0-8d41-4c78-99ff-e046114657c2",
"89da4f67-511f-4677-9688-65edcf69667d"
],
"Opportunities": [
"ae168f90-699c-4683-adfd-7e0f439f9df2",
"e096434f-457c-4164-9c36-36e530127dcc"
]
}
},
{
"Id": "be187666-19f7-4976-b9f5-28a95ee8b7aa",
"ParentId": "8b5183d2-38d3-415c-a20b-f5f8fc0f2fca",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"5ef04481-c806-4608-9d57-5141500ce943",
"5c9bae0a-710f-4a0d-9859-98d01778f887"
],
"Companies": [
"45e75e7f-1c12-48c5-810f-918d38455d62",
"6e968ff9-b710-402d-be55-bc7e773e7e27"
],
"Groups": [
"f9af4db0-8d41-4c78-99ff-e046114657c2",
"89da4f67-511f-4677-9688-65edcf69667d"
],
"Opportunities": [
"ae168f90-699c-4683-adfd-7e0f439f9df2",
"e096434f-457c-4164-9c36-36e530127dcc"
]
}
}
]