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": "73fff9f3-64fc-4f53-96cb-44d0db1360a3",
"ParentId": "7b677e29-b92b-4ff3-a141-8ba1305c54a0",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"406eaee2-f9f6-4818-8f27-10d87b5a5ade",
"a989bc5d-c3b3-4f44-b374-309ab8fd2e8a"
],
"Companies": [
"27dbed23-08ff-4ad7-95a5-e85db83ae480",
"80147243-f5c8-4ca6-b271-1a25c78b25ce"
],
"Groups": [
"567c343d-34c1-45bb-9d82-a04249fd0331",
"04cf267b-212b-49a5-98a2-146d247c4300"
],
"Opportunities": [
"ddb31db7-8780-4672-b838-8d9abe3790fb",
"723e20c8-813e-436f-ac9d-1347af38d216"
]
}
},
{
"Id": "73fff9f3-64fc-4f53-96cb-44d0db1360a3",
"ParentId": "7b677e29-b92b-4ff3-a141-8ba1305c54a0",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"406eaee2-f9f6-4818-8f27-10d87b5a5ade",
"a989bc5d-c3b3-4f44-b374-309ab8fd2e8a"
],
"Companies": [
"27dbed23-08ff-4ad7-95a5-e85db83ae480",
"80147243-f5c8-4ca6-b271-1a25c78b25ce"
],
"Groups": [
"567c343d-34c1-45bb-9d82-a04249fd0331",
"04cf267b-212b-49a5-98a2-146d247c4300"
],
"Opportunities": [
"ddb31db7-8780-4672-b838-8d9abe3790fb",
"723e20c8-813e-436f-ac9d-1347af38d216"
]
}
}
]