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": "574e36be-6ff0-44e6-9a82-3d8b5d133001",
"ParentId": "8d6d26e3-c5fa-4fd9-9d08-c1e15b93d1eb",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"a330e1e6-115e-47d6-9a1d-5c8c9ee30828",
"881a82c5-c650-4d6c-8bc5-0869f3e24a0a"
],
"Companies": [
"0c44646f-1b11-47bd-bafc-cbda09e33951",
"976d06c3-04fb-48e5-9921-4cd475f436af"
],
"Groups": [
"ef7d93ce-bc6f-4a1d-a2d6-294645e2e1cb",
"ddc34de7-3a26-470f-9c1c-a686c6ed5b6a"
],
"Opportunities": [
"02248255-dc81-4278-bab8-d895b83ade0d",
"798878fe-74fc-4c25-94fb-e96d431a0514"
]
}
},
{
"Id": "574e36be-6ff0-44e6-9a82-3d8b5d133001",
"ParentId": "8d6d26e3-c5fa-4fd9-9d08-c1e15b93d1eb",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"a330e1e6-115e-47d6-9a1d-5c8c9ee30828",
"881a82c5-c650-4d6c-8bc5-0869f3e24a0a"
],
"Companies": [
"0c44646f-1b11-47bd-bafc-cbda09e33951",
"976d06c3-04fb-48e5-9921-4cd475f436af"
],
"Groups": [
"ef7d93ce-bc6f-4a1d-a2d6-294645e2e1cb",
"ddc34de7-3a26-470f-9c1c-a686c6ed5b6a"
],
"Opportunities": [
"02248255-dc81-4278-bab8-d895b83ade0d",
"798878fe-74fc-4c25-94fb-e96d431a0514"
]
}
}
]