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": "500544e3-aadd-41b4-821f-1312c3882ab2",
"ParentId": "dbda2e14-8a8b-4d3b-b701-b2755564a67d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"93f47eea-ab93-40d6-82ea-29a388f1d616",
"86893ae9-1ec8-4d80-8deb-2336b87ef336"
],
"Companies": [
"9228425f-cc2c-4cf1-a3ee-9ee09e2b8500",
"e306b02d-0335-4a5e-8b4b-192c05860f5d"
],
"Groups": [
"82cd8c8f-7ab7-4c37-ae72-1bdb8d08cc26",
"a5c94933-215d-4b86-b901-e9a800a8ddf4"
],
"Opportunities": [
"8d63d982-6f14-49a0-84ef-0e83443c79a3",
"b91a4090-ef2d-43ee-be37-426b2b427907"
]
}
},
{
"Id": "500544e3-aadd-41b4-821f-1312c3882ab2",
"ParentId": "dbda2e14-8a8b-4d3b-b701-b2755564a67d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"93f47eea-ab93-40d6-82ea-29a388f1d616",
"86893ae9-1ec8-4d80-8deb-2336b87ef336"
],
"Companies": [
"9228425f-cc2c-4cf1-a3ee-9ee09e2b8500",
"e306b02d-0335-4a5e-8b4b-192c05860f5d"
],
"Groups": [
"82cd8c8f-7ab7-4c37-ae72-1bdb8d08cc26",
"a5c94933-215d-4b86-b901-e9a800a8ddf4"
],
"Opportunities": [
"8d63d982-6f14-49a0-84ef-0e83443c79a3",
"b91a4090-ef2d-43ee-be37-426b2b427907"
]
}
}
]