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": "1fadf23b-7792-4bac-ba47-563ad991c279",
"ParentId": "eaead761-0c69-4480-9217-36b8d66128a3",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"40de3448-ccc6-480d-aa7a-c183a28e50c3",
"c8addb9d-29f3-4aeb-83a4-49eb8eb8726e"
],
"Companies": [
"4d58592c-0200-47a3-b8f7-43eb402f0537",
"9382e23d-4264-4d53-b7d0-ab3579b5ac58"
],
"Groups": [
"931fb24f-0a2c-4485-8088-c8eefa6ebe33",
"aeb75bf0-6d2c-4a89-9bb5-aaa6d98bfab0"
],
"Opportunities": [
"b0da1a99-0c45-461a-a7ca-233d700d4e94",
"a1ab5e77-61ea-410d-8ea0-548ce983a808"
]
}
},
{
"Id": "1fadf23b-7792-4bac-ba47-563ad991c279",
"ParentId": "eaead761-0c69-4480-9217-36b8d66128a3",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"40de3448-ccc6-480d-aa7a-c183a28e50c3",
"c8addb9d-29f3-4aeb-83a4-49eb8eb8726e"
],
"Companies": [
"4d58592c-0200-47a3-b8f7-43eb402f0537",
"9382e23d-4264-4d53-b7d0-ab3579b5ac58"
],
"Groups": [
"931fb24f-0a2c-4485-8088-c8eefa6ebe33",
"aeb75bf0-6d2c-4a89-9bb5-aaa6d98bfab0"
],
"Opportunities": [
"b0da1a99-0c45-461a-a7ca-233d700d4e94",
"a1ab5e77-61ea-410d-8ea0-548ce983a808"
]
}
}
]