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": "3529c439-fdbf-432c-b19e-ec5ee78c06f0",
"ParentId": "bb3fad0c-26aa-4c98-812d-144d77baaad5",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"61a90fc7-871a-4682-97a8-6062078803aa",
"e4d9229d-6207-49b7-bea4-fb9a75c25b1a"
],
"Companies": [
"c5988a65-6fcf-4254-871f-181928f5a80d",
"aff436b5-d935-44de-a500-f98bedc81663"
],
"Groups": [
"b077f005-3451-41c0-9f6f-9a1019895071",
"f8a16099-45bb-450d-8602-ff24fd27e6f1"
],
"Opportunities": [
"97fd87fb-a9b4-4e9d-8b74-73a0f790721a",
"521a8fe0-1248-40ca-b2db-95c3b953a977"
]
}
},
{
"Id": "3529c439-fdbf-432c-b19e-ec5ee78c06f0",
"ParentId": "bb3fad0c-26aa-4c98-812d-144d77baaad5",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"61a90fc7-871a-4682-97a8-6062078803aa",
"e4d9229d-6207-49b7-bea4-fb9a75c25b1a"
],
"Companies": [
"c5988a65-6fcf-4254-871f-181928f5a80d",
"aff436b5-d935-44de-a500-f98bedc81663"
],
"Groups": [
"b077f005-3451-41c0-9f6f-9a1019895071",
"f8a16099-45bb-450d-8602-ff24fd27e6f1"
],
"Opportunities": [
"97fd87fb-a9b4-4e9d-8b74-73a0f790721a",
"521a8fe0-1248-40ca-b2db-95c3b953a977"
]
}
}
]