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": "318ec493-6772-4737-a550-d9ae210162bb",
"ParentId": "03ad4bca-9382-41f7-9c5f-ce9ff4f3faf3",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"75d47649-feeb-4f9d-9764-51edb6bd2e58",
"96822136-acfd-43ee-9008-4de0b1772d83"
],
"Companies": [
"74d73588-e279-42b0-a98c-c1176827e552",
"bab71091-d7a5-4e60-8192-561b725fc63a"
],
"Groups": [
"fb5ff9bd-2208-4dd1-bfef-19a9f89b8798",
"8f4622a1-e17a-4f17-a7a1-33f5999d1340"
],
"Opportunities": [
"be1eb3c2-dcd5-4338-9f40-1af53b71678c",
"d58ca032-0155-4a06-b818-b050851ab193"
]
}
},
{
"Id": "318ec493-6772-4737-a550-d9ae210162bb",
"ParentId": "03ad4bca-9382-41f7-9c5f-ce9ff4f3faf3",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"75d47649-feeb-4f9d-9764-51edb6bd2e58",
"96822136-acfd-43ee-9008-4de0b1772d83"
],
"Companies": [
"74d73588-e279-42b0-a98c-c1176827e552",
"bab71091-d7a5-4e60-8192-561b725fc63a"
],
"Groups": [
"fb5ff9bd-2208-4dd1-bfef-19a9f89b8798",
"8f4622a1-e17a-4f17-a7a1-33f5999d1340"
],
"Opportunities": [
"be1eb3c2-dcd5-4338-9f40-1af53b71678c",
"d58ca032-0155-4a06-b818-b050851ab193"
]
}
}
]