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": "b0437e3a-6540-4d37-ab44-a65b9495e869",
"ParentId": "08528bf9-0e1c-4366-bd40-f3f418127001",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"0ddc989a-99ea-4679-a324-216be329ab88",
"e4ccdc3e-6dd8-4923-9889-dde21f3efe67"
],
"Companies": [
"4dd9f392-dc9d-4cac-a9dc-7426a17fefd4",
"58a8c868-7b21-429b-bd5e-d7cdd871cb3f"
],
"Groups": [
"63c2f81c-0ad0-4ae6-9c9b-eebf324930b4",
"22e860d0-05db-4c5b-8cc8-b08f7bd75380"
],
"Opportunities": [
"e6248a0f-5058-4b6d-b593-d0350380b35e",
"a19ca747-393b-477e-b1c0-910f259f124c"
]
}
},
{
"Id": "b0437e3a-6540-4d37-ab44-a65b9495e869",
"ParentId": "08528bf9-0e1c-4366-bd40-f3f418127001",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"0ddc989a-99ea-4679-a324-216be329ab88",
"e4ccdc3e-6dd8-4923-9889-dde21f3efe67"
],
"Companies": [
"4dd9f392-dc9d-4cac-a9dc-7426a17fefd4",
"58a8c868-7b21-429b-bd5e-d7cdd871cb3f"
],
"Groups": [
"63c2f81c-0ad0-4ae6-9c9b-eebf324930b4",
"22e860d0-05db-4c5b-8cc8-b08f7bd75380"
],
"Opportunities": [
"e6248a0f-5058-4b6d-b593-d0350380b35e",
"a19ca747-393b-477e-b1c0-910f259f124c"
]
}
}
]