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": "fa4785de-46c2-48e4-82f2-e16b97baf8d6",
"ParentId": "983a3147-8e2b-45fd-b3fc-09bcc9e3f341",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"6a60d592-2ab9-4560-8821-4f44eebfdaee",
"77fdd5ea-90e6-4f9f-aeaa-0cdce7de5363"
],
"Companies": [
"7b20d88e-c90f-4797-ad9b-c2776db5aefa",
"f6fa08c9-fe75-48b5-94c1-90b05933f3b6"
],
"Groups": [
"53937d8d-92e2-4850-b195-dd1d4fd560bf",
"312e9473-8139-4736-8770-04ebe84c9321"
],
"Opportunities": [
"e8603b2d-500a-4b52-aae2-3333f4824fd5",
"3846314d-b3ae-45de-989f-bdea8986bc9b"
]
}
},
{
"Id": "fa4785de-46c2-48e4-82f2-e16b97baf8d6",
"ParentId": "983a3147-8e2b-45fd-b3fc-09bcc9e3f341",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"6a60d592-2ab9-4560-8821-4f44eebfdaee",
"77fdd5ea-90e6-4f9f-aeaa-0cdce7de5363"
],
"Companies": [
"7b20d88e-c90f-4797-ad9b-c2776db5aefa",
"f6fa08c9-fe75-48b5-94c1-90b05933f3b6"
],
"Groups": [
"53937d8d-92e2-4850-b195-dd1d4fd560bf",
"312e9473-8139-4736-8770-04ebe84c9321"
],
"Opportunities": [
"e8603b2d-500a-4b52-aae2-3333f4824fd5",
"3846314d-b3ae-45de-989f-bdea8986bc9b"
]
}
}
]