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": "e7702419-81e1-4e17-bc18-61495ff4cb0b",
"ParentId": "536e30a1-436e-496e-ba03-969cd9afbfe9",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"9e4df78e-e1e2-45ed-bfe4-3604dcc66cd0",
"2be41cb7-d171-47a2-bb39-148438bd34b2"
],
"Companies": [
"c4f9b0c8-b666-4b0a-b17c-8f3517e1a9e4",
"08105011-37e2-44d4-a6f3-aef9f15b7e98"
],
"Groups": [
"54aeca5b-4eef-46de-8710-3600ff84a21d",
"1e81ec8f-e80d-4d6c-bb70-1789aefe2061"
],
"Opportunities": [
"48f9f6e1-1c1a-4b14-80e3-d27497a8e125",
"e7523906-9b3f-49de-a1d9-efc62b2ce8ea"
]
}
},
{
"Id": "e7702419-81e1-4e17-bc18-61495ff4cb0b",
"ParentId": "536e30a1-436e-496e-ba03-969cd9afbfe9",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"9e4df78e-e1e2-45ed-bfe4-3604dcc66cd0",
"2be41cb7-d171-47a2-bb39-148438bd34b2"
],
"Companies": [
"c4f9b0c8-b666-4b0a-b17c-8f3517e1a9e4",
"08105011-37e2-44d4-a6f3-aef9f15b7e98"
],
"Groups": [
"54aeca5b-4eef-46de-8710-3600ff84a21d",
"1e81ec8f-e80d-4d6c-bb70-1789aefe2061"
],
"Opportunities": [
"48f9f6e1-1c1a-4b14-80e3-d27497a8e125",
"e7523906-9b3f-49de-a1d9-efc62b2ce8ea"
]
}
}
]