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": "13f3daa1-4c73-4de6-be09-8dfcae873a94",
"ParentId": "d4286ab5-2fe3-4bed-a676-c8394f79129f",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"085fdc7f-8c6a-4b61-88d6-e4691cfae5ed",
"5c3d76d2-f8bd-4b38-900f-693369156800"
],
"Companies": [
"be75f224-6eb8-4a79-b015-81bd13ed350d",
"55412afc-b076-4719-90b0-662fb57ccf79"
],
"Groups": [
"48a7bcc5-43e8-4cd4-bcdd-8d562d51be02",
"a3eeccd1-88fc-4d25-b0ae-83956f549bb1"
],
"Opportunities": [
"72227463-e259-4b53-86fb-55ccdf472449",
"f14bfc93-9b52-4ba7-b5d2-97d62a00b966"
]
}
},
{
"Id": "13f3daa1-4c73-4de6-be09-8dfcae873a94",
"ParentId": "d4286ab5-2fe3-4bed-a676-c8394f79129f",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"085fdc7f-8c6a-4b61-88d6-e4691cfae5ed",
"5c3d76d2-f8bd-4b38-900f-693369156800"
],
"Companies": [
"be75f224-6eb8-4a79-b015-81bd13ed350d",
"55412afc-b076-4719-90b0-662fb57ccf79"
],
"Groups": [
"48a7bcc5-43e8-4cd4-bcdd-8d562d51be02",
"a3eeccd1-88fc-4d25-b0ae-83956f549bb1"
],
"Opportunities": [
"72227463-e259-4b53-86fb-55ccdf472449",
"f14bfc93-9b52-4ba7-b5d2-97d62a00b966"
]
}
}
]