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": "cadae7f2-3059-49c8-b368-5e9893420f95",
"ParentId": "61270c35-b471-454b-9df7-7fa637973aa1",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"113f02bb-1227-4623-846c-9096fd7f342a",
"58171fbd-a0cb-4b98-8015-2bc217c2ce65"
],
"Companies": [
"6be80fca-1564-41aa-b887-722c648ba9f4",
"dbb00eb8-b5ac-423a-9585-4abe60e54a93"
],
"Groups": [
"0764d4db-3f3b-4be5-920d-e07a334d5908",
"bac0770d-2de0-4a7d-baaa-beef1e8542ea"
],
"Opportunities": [
"2d550614-95b8-4e58-b90b-544fc1f3e9e2",
"777360e2-6f00-4d42-a7a7-1a486c16a798"
]
}
},
{
"Id": "cadae7f2-3059-49c8-b368-5e9893420f95",
"ParentId": "61270c35-b471-454b-9df7-7fa637973aa1",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"113f02bb-1227-4623-846c-9096fd7f342a",
"58171fbd-a0cb-4b98-8015-2bc217c2ce65"
],
"Companies": [
"6be80fca-1564-41aa-b887-722c648ba9f4",
"dbb00eb8-b5ac-423a-9585-4abe60e54a93"
],
"Groups": [
"0764d4db-3f3b-4be5-920d-e07a334d5908",
"bac0770d-2de0-4a7d-baaa-beef1e8542ea"
],
"Opportunities": [
"2d550614-95b8-4e58-b90b-544fc1f3e9e2",
"777360e2-6f00-4d42-a7a7-1a486c16a798"
]
}
}
]