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": "a87d1ab3-df41-4372-a4b6-733eee98f7a1",
"ParentId": "5e840a36-099a-46a6-8a5f-af360ae041eb",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"05913252-a64d-493b-88d8-d23fd1e0efaa",
"2c72fe20-c06e-45b2-aeef-b29ad3ccdbeb"
],
"Companies": [
"75119f79-68f8-4d90-a426-5956d261d4b6",
"0c454398-6839-41e5-a7c4-2f1a192a5034"
],
"Groups": [
"f02a7252-385f-418b-9343-becd9157e3e9",
"f155b021-d6ba-4304-a781-5f17d37d620a"
],
"Opportunities": [
"838567e1-4b7a-4614-83de-249f9b384a5b",
"0f7d627a-01b7-4f36-a75f-b68d595cf010"
]
}
},
{
"Id": "a87d1ab3-df41-4372-a4b6-733eee98f7a1",
"ParentId": "5e840a36-099a-46a6-8a5f-af360ae041eb",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"05913252-a64d-493b-88d8-d23fd1e0efaa",
"2c72fe20-c06e-45b2-aeef-b29ad3ccdbeb"
],
"Companies": [
"75119f79-68f8-4d90-a426-5956d261d4b6",
"0c454398-6839-41e5-a7c4-2f1a192a5034"
],
"Groups": [
"f02a7252-385f-418b-9343-becd9157e3e9",
"f155b021-d6ba-4304-a781-5f17d37d620a"
],
"Opportunities": [
"838567e1-4b7a-4614-83de-249f9b384a5b",
"0f7d627a-01b7-4f36-a75f-b68d595cf010"
]
}
}
]