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": "97ff3379-4250-4a32-810c-5c54d59d9e32",
"ParentId": "bda9d020-dcce-4243-a8eb-b6581350ea85",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"d5076b08-5365-412e-b576-25c761371207",
"5c449ff9-7c7f-40cc-bf21-ca7b2fbdc7a0"
],
"Companies": [
"8356d22e-7c13-4513-95ce-15a728c7e85f",
"933bf63c-7a37-4996-a4ac-f15fd6a17161"
],
"Groups": [
"14553f5e-158a-47e5-aa4b-43d0f3743f42",
"bf0ddfe0-78f0-43ad-a4aa-d490252fb139"
],
"Opportunities": [
"25677e57-7d06-40f8-83b6-98b5d8655c4d",
"4c9d9a7b-9787-4594-a7ee-efe2afa68813"
]
}
},
{
"Id": "97ff3379-4250-4a32-810c-5c54d59d9e32",
"ParentId": "bda9d020-dcce-4243-a8eb-b6581350ea85",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"d5076b08-5365-412e-b576-25c761371207",
"5c449ff9-7c7f-40cc-bf21-ca7b2fbdc7a0"
],
"Companies": [
"8356d22e-7c13-4513-95ce-15a728c7e85f",
"933bf63c-7a37-4996-a4ac-f15fd6a17161"
],
"Groups": [
"14553f5e-158a-47e5-aa4b-43d0f3743f42",
"bf0ddfe0-78f0-43ad-a4aa-d490252fb139"
],
"Opportunities": [
"25677e57-7d06-40f8-83b6-98b5d8655c4d",
"4c9d9a7b-9787-4594-a7ee-efe2afa68813"
]
}
}
]