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": "5181941f-e771-4add-b319-d63344e025fc",
"ParentId": "b8a57709-c5bb-418a-b142-26d17146542a",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"8442b514-268b-4fb3-88f6-dc6eaf9574a1",
"5a725a26-0ba4-4c2c-a41c-572747fbdc28"
],
"Companies": [
"cb217d62-4101-42e6-8409-1fc4e24f7f36",
"42702693-1dd9-404d-a819-aa3673d79fe7"
],
"Groups": [
"6a81531d-58bd-4c7a-bb49-7bb293335897",
"c6a542a5-0569-430a-b915-1da3e4df84ad"
],
"Opportunities": [
"78a0207d-9979-41be-9930-a58e26573e90",
"12e9e8ee-fab7-4dcf-a091-1838f660bdfc"
]
}
},
{
"Id": "5181941f-e771-4add-b319-d63344e025fc",
"ParentId": "b8a57709-c5bb-418a-b142-26d17146542a",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"8442b514-268b-4fb3-88f6-dc6eaf9574a1",
"5a725a26-0ba4-4c2c-a41c-572747fbdc28"
],
"Companies": [
"cb217d62-4101-42e6-8409-1fc4e24f7f36",
"42702693-1dd9-404d-a819-aa3673d79fe7"
],
"Groups": [
"6a81531d-58bd-4c7a-bb49-7bb293335897",
"c6a542a5-0569-430a-b915-1da3e4df84ad"
],
"Opportunities": [
"78a0207d-9979-41be-9930-a58e26573e90",
"12e9e8ee-fab7-4dcf-a091-1838f660bdfc"
]
}
}
]