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": "93081e81-d436-48f9-a268-e400bd05282d",
"ParentId": "518ec958-a0a2-4432-a486-94a39789b216",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"d552202f-0de8-41f6-8825-c500553e7487",
"bf737748-8005-4970-9b34-11f5a0b01b82"
],
"Companies": [
"6d30a0ee-d229-4586-9ad4-fd81e7c71889",
"25910411-f2ad-41b3-9633-c2badc522cc6"
],
"Groups": [
"b3789eac-378e-492a-8550-bcc84428e803",
"a7943b09-cf70-4553-a686-a7a0dfd671a3"
],
"Opportunities": [
"d16c9ef4-1f4b-4285-8f86-cf69c009109a",
"2dc56210-4bfc-4aad-af47-a7a23e4cc771"
]
}
},
{
"Id": "93081e81-d436-48f9-a268-e400bd05282d",
"ParentId": "518ec958-a0a2-4432-a486-94a39789b216",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"d552202f-0de8-41f6-8825-c500553e7487",
"bf737748-8005-4970-9b34-11f5a0b01b82"
],
"Companies": [
"6d30a0ee-d229-4586-9ad4-fd81e7c71889",
"25910411-f2ad-41b3-9633-c2badc522cc6"
],
"Groups": [
"b3789eac-378e-492a-8550-bcc84428e803",
"a7943b09-cf70-4553-a686-a7a0dfd671a3"
],
"Opportunities": [
"d16c9ef4-1f4b-4285-8f86-cf69c009109a",
"2dc56210-4bfc-4aad-af47-a7a23e4cc771"
]
}
}
]