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": "e7426b19-21bb-4839-a318-8464f645ea3b",
"ParentId": "02bf319b-db6f-47cc-becb-b5ed0f30abbb",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"f632342d-9666-498d-b56c-cc656c204bb7",
"6b6e3cdc-89c1-464f-bde2-d1e7c54ebd22"
],
"Companies": [
"bae59ab1-edc3-4cad-ab60-349e05aa90c0",
"746afbe0-d75c-4298-a3b2-4100faf9e883"
],
"Groups": [
"6144400e-d36e-4a3a-8282-7f9519110daf",
"0b21169d-0ebf-4ae0-8cc0-998191012c94"
],
"Opportunities": [
"32defbdc-3fed-4d0a-918f-59005b247459",
"4d6e9c88-cb73-4bf1-8d34-8572a663e402"
]
}
},
{
"Id": "e7426b19-21bb-4839-a318-8464f645ea3b",
"ParentId": "02bf319b-db6f-47cc-becb-b5ed0f30abbb",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"f632342d-9666-498d-b56c-cc656c204bb7",
"6b6e3cdc-89c1-464f-bde2-d1e7c54ebd22"
],
"Companies": [
"bae59ab1-edc3-4cad-ab60-349e05aa90c0",
"746afbe0-d75c-4298-a3b2-4100faf9e883"
],
"Groups": [
"6144400e-d36e-4a3a-8282-7f9519110daf",
"0b21169d-0ebf-4ae0-8cc0-998191012c94"
],
"Opportunities": [
"32defbdc-3fed-4d0a-918f-59005b247459",
"4d6e9c88-cb73-4bf1-8d34-8572a663e402"
]
}
}
]