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": "8f44be6e-a63d-4629-b9d0-5f769f0b75be",
"ParentId": "7ea9c991-c8a9-463e-81e1-e416f4030a5f",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"a0b37fa5-8ccc-4239-8e05-6d5320332a98",
"82025a78-97b0-4fd5-8ad1-ccacbab70add"
],
"Companies": [
"d0ecf7ab-86e1-496f-ab84-461cb5fb581b",
"26a2bf4d-4349-4e54-9704-bed802210020"
],
"Groups": [
"7bd97675-fa82-42ed-a3c9-96a2bb9f691a",
"e2aac682-f71e-4a05-95ac-0adfa860c627"
],
"Opportunities": [
"c1f1ea62-56e0-4299-a81d-3f8cce3c252c",
"b0055175-b1e6-4352-aeb2-106a2f0d0777"
]
}
},
{
"Id": "8f44be6e-a63d-4629-b9d0-5f769f0b75be",
"ParentId": "7ea9c991-c8a9-463e-81e1-e416f4030a5f",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"a0b37fa5-8ccc-4239-8e05-6d5320332a98",
"82025a78-97b0-4fd5-8ad1-ccacbab70add"
],
"Companies": [
"d0ecf7ab-86e1-496f-ab84-461cb5fb581b",
"26a2bf4d-4349-4e54-9704-bed802210020"
],
"Groups": [
"7bd97675-fa82-42ed-a3c9-96a2bb9f691a",
"e2aac682-f71e-4a05-95ac-0adfa860c627"
],
"Opportunities": [
"c1f1ea62-56e0-4299-a81d-3f8cce3c252c",
"b0055175-b1e6-4352-aeb2-106a2f0d0777"
]
}
}
]