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": "4f91bcba-30ee-4b52-b824-86bf3033f8c8",
"ParentId": "e7a1242a-ff5f-4e34-a821-9bf05b7ea4da",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"af5b89d8-67eb-40a4-8e94-f31de179b812",
"627fd57b-9f15-4b74-9e74-490677cb5ad1"
],
"Companies": [
"3a784089-6adb-4d7f-835b-7082f6a3c7aa",
"9d2bc73a-c2eb-4890-8d66-36baa4b52882"
],
"Groups": [
"c4ef55ac-dc51-43ad-9be7-e8a053d02659",
"d265bad3-f6ce-4fec-874b-4973a6d273e8"
],
"Opportunities": [
"78c71267-3dcf-43f3-bcbb-b881ca6208f4",
"bb28506a-8cf4-4448-ac7f-ab2be4745d84"
]
}
},
{
"Id": "4f91bcba-30ee-4b52-b824-86bf3033f8c8",
"ParentId": "e7a1242a-ff5f-4e34-a821-9bf05b7ea4da",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"af5b89d8-67eb-40a4-8e94-f31de179b812",
"627fd57b-9f15-4b74-9e74-490677cb5ad1"
],
"Companies": [
"3a784089-6adb-4d7f-835b-7082f6a3c7aa",
"9d2bc73a-c2eb-4890-8d66-36baa4b52882"
],
"Groups": [
"c4ef55ac-dc51-43ad-9be7-e8a053d02659",
"d265bad3-f6ce-4fec-874b-4973a6d273e8"
],
"Opportunities": [
"78c71267-3dcf-43f3-bcbb-b881ca6208f4",
"bb28506a-8cf4-4448-ac7f-ab2be4745d84"
]
}
}
]