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": "ec0a164a-6848-4473-a03c-49f30685115f",
"ParentId": "3313248d-d21e-4b03-8752-5e3bc46d8379",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"b3599735-18f4-4cbc-bf1a-e2f509381be8",
"97d3c890-b052-461f-983f-081178ac0141"
],
"Companies": [
"1a93501d-c1bb-4545-be17-e8e3476280a8",
"ae46cdb8-f8fa-46c8-977a-0593542a1661"
],
"Groups": [
"2868e25c-2510-458c-ad83-5524e3ae7a94",
"d3278405-abb1-4513-9542-e32afe3469c4"
],
"Opportunities": [
"a7a3118b-325e-4f1d-8ae8-8e6650ca0ab6",
"5e62c845-2a54-43bf-8091-8242cfa1adb9"
]
}
},
{
"Id": "ec0a164a-6848-4473-a03c-49f30685115f",
"ParentId": "3313248d-d21e-4b03-8752-5e3bc46d8379",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"b3599735-18f4-4cbc-bf1a-e2f509381be8",
"97d3c890-b052-461f-983f-081178ac0141"
],
"Companies": [
"1a93501d-c1bb-4545-be17-e8e3476280a8",
"ae46cdb8-f8fa-46c8-977a-0593542a1661"
],
"Groups": [
"2868e25c-2510-458c-ad83-5524e3ae7a94",
"d3278405-abb1-4513-9542-e32afe3469c4"
],
"Opportunities": [
"a7a3118b-325e-4f1d-8ae8-8e6650ca0ab6",
"5e62c845-2a54-43bf-8091-8242cfa1adb9"
]
}
}
]