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": "e2314781-cd7b-47fd-942c-9ba1193102a4",
"ParentId": "a2ecfd2a-657c-4caa-87a7-189d33fba28f",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"6085cc1c-362d-4f57-9f49-d6d117fc221e",
"4199961d-c024-44b2-a857-db7ab775579a"
],
"Companies": [
"6b22d820-3c65-4bf8-ac0b-ad118bf354b9",
"0f731842-b809-4955-aacc-461dfcd43ac4"
],
"Groups": [
"ef44d488-5345-4de1-902c-8f44525ad434",
"10d1d656-e2f3-479d-a202-c461ac0edb6e"
],
"Opportunities": [
"d4f2e5ff-5c5d-4e9f-b942-38f60cb15653",
"db998e08-ba54-4e1e-87ad-5c98ff38d458"
]
}
},
{
"Id": "e2314781-cd7b-47fd-942c-9ba1193102a4",
"ParentId": "a2ecfd2a-657c-4caa-87a7-189d33fba28f",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"6085cc1c-362d-4f57-9f49-d6d117fc221e",
"4199961d-c024-44b2-a857-db7ab775579a"
],
"Companies": [
"6b22d820-3c65-4bf8-ac0b-ad118bf354b9",
"0f731842-b809-4955-aacc-461dfcd43ac4"
],
"Groups": [
"ef44d488-5345-4de1-902c-8f44525ad434",
"10d1d656-e2f3-479d-a202-c461ac0edb6e"
],
"Opportunities": [
"d4f2e5ff-5c5d-4e9f-b942-38f60cb15653",
"db998e08-ba54-4e1e-87ad-5c98ff38d458"
]
}
}
]