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": "d14523c8-99c8-4289-b1ea-639537955d7b",
"ParentId": "4bf467dd-a9ac-492d-9562-943f529f18ea",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"ce8ca7d2-7256-4d7a-bc73-851bd13ba181",
"40e2f939-be0b-45ff-aca1-bdd0b9a3e27d"
],
"Companies": [
"ece626e5-9277-4c81-8b21-16209dd4ef5d",
"ac3876c1-ea41-4b48-a792-ccbf94e385be"
],
"Groups": [
"066340ca-4a73-478b-b4d6-4bbbbad35451",
"b6cc5ab4-325f-4cad-a961-3bc6562f24d3"
],
"Opportunities": [
"8d1c447c-7d80-49d6-acec-152bcaa0ce3b",
"4966ed58-6683-4b07-870d-2b70635f1539"
]
}
},
{
"Id": "d14523c8-99c8-4289-b1ea-639537955d7b",
"ParentId": "4bf467dd-a9ac-492d-9562-943f529f18ea",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"ce8ca7d2-7256-4d7a-bc73-851bd13ba181",
"40e2f939-be0b-45ff-aca1-bdd0b9a3e27d"
],
"Companies": [
"ece626e5-9277-4c81-8b21-16209dd4ef5d",
"ac3876c1-ea41-4b48-a792-ccbf94e385be"
],
"Groups": [
"066340ca-4a73-478b-b4d6-4bbbbad35451",
"b6cc5ab4-325f-4cad-a961-3bc6562f24d3"
],
"Opportunities": [
"8d1c447c-7d80-49d6-acec-152bcaa0ce3b",
"4966ed58-6683-4b07-870d-2b70635f1539"
]
}
}
]