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": "94ea9a5c-64c1-4f94-a4f2-9cedcb379d4c",
"ParentId": "38252ba2-ed1f-4ad0-b628-5deaba82612f",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"b05ae3c7-613a-459c-9aef-39fb5de02d72",
"c7f46452-ee69-4bba-bd87-9c33f01488f0"
],
"Companies": [
"260e5c95-226a-46c1-a03f-3983b597029a",
"d2fd7e2b-5786-4a76-86e3-cea4153abff5"
],
"Groups": [
"02253bcd-2367-4cc0-bc22-d216d4ce768f",
"a4bf2349-1807-4901-9e40-64241bbbb54a"
],
"Opportunities": [
"a302a3b0-7e5a-408b-95c8-6e9e905b002c",
"fe4c0b4f-5ebc-446a-aa3d-61c1f56449db"
]
}
},
{
"Id": "94ea9a5c-64c1-4f94-a4f2-9cedcb379d4c",
"ParentId": "38252ba2-ed1f-4ad0-b628-5deaba82612f",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"b05ae3c7-613a-459c-9aef-39fb5de02d72",
"c7f46452-ee69-4bba-bd87-9c33f01488f0"
],
"Companies": [
"260e5c95-226a-46c1-a03f-3983b597029a",
"d2fd7e2b-5786-4a76-86e3-cea4153abff5"
],
"Groups": [
"02253bcd-2367-4cc0-bc22-d216d4ce768f",
"a4bf2349-1807-4901-9e40-64241bbbb54a"
],
"Opportunities": [
"a302a3b0-7e5a-408b-95c8-6e9e905b002c",
"fe4c0b4f-5ebc-446a-aa3d-61c1f56449db"
]
}
}
]