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": "ff26d875-acec-455a-81e2-1f1637005129",
"ParentId": "657b9f0d-b2e9-4f3e-b032-b3c076369e2b",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"32536de6-7e55-4596-8053-4b7bef5b8594",
"21bf007a-96ac-4360-b6d3-41f604a0e830"
],
"Companies": [
"31171614-06b9-4844-ab32-9ee61198c44a",
"c84c6d68-08b7-45a1-bdc6-0d6e825a6d33"
],
"Groups": [
"1bf1e516-7df7-4c67-9e5f-0a406a6d8666",
"8b50e060-65bb-4bfa-ab29-c234d56a861c"
],
"Opportunities": [
"61db4f02-1507-42bb-9ca7-82f1bcc5cdfd",
"1118252d-1a2e-4a9f-87b2-1e56648e342b"
]
}
},
{
"Id": "ff26d875-acec-455a-81e2-1f1637005129",
"ParentId": "657b9f0d-b2e9-4f3e-b032-b3c076369e2b",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"32536de6-7e55-4596-8053-4b7bef5b8594",
"21bf007a-96ac-4360-b6d3-41f604a0e830"
],
"Companies": [
"31171614-06b9-4844-ab32-9ee61198c44a",
"c84c6d68-08b7-45a1-bdc6-0d6e825a6d33"
],
"Groups": [
"1bf1e516-7df7-4c67-9e5f-0a406a6d8666",
"8b50e060-65bb-4bfa-ab29-c234d56a861c"
],
"Opportunities": [
"61db4f02-1507-42bb-9ca7-82f1bcc5cdfd",
"1118252d-1a2e-4a9f-87b2-1e56648e342b"
]
}
}
]