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": "4fba0eac-ed48-479d-b1c1-2945fcb8b9d1",
"ParentId": "69f47d6a-0bac-4853-86d9-ac475961e898",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"aeaaa437-3e49-48ca-824b-6af84dbeb5f7",
"ff96fb69-5936-4df7-9f07-39a9ca116ef8"
],
"Companies": [
"d4590881-c22e-4961-9ce3-813340485e09",
"0e8b6713-edd5-4f0b-82e8-b4e388a8a732"
],
"Groups": [
"c0a1763f-602c-4747-8c28-0bb4e409d98d",
"7c7abe60-473d-4d6b-8271-78bb3e0d8bc2"
],
"Opportunities": [
"36aa1fad-af28-48a5-9ab9-f937b0669d0d",
"809f46aa-77aa-41f8-b0e4-8ff91bc26db9"
]
}
},
{
"Id": "4fba0eac-ed48-479d-b1c1-2945fcb8b9d1",
"ParentId": "69f47d6a-0bac-4853-86d9-ac475961e898",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"aeaaa437-3e49-48ca-824b-6af84dbeb5f7",
"ff96fb69-5936-4df7-9f07-39a9ca116ef8"
],
"Companies": [
"d4590881-c22e-4961-9ce3-813340485e09",
"0e8b6713-edd5-4f0b-82e8-b4e388a8a732"
],
"Groups": [
"c0a1763f-602c-4747-8c28-0bb4e409d98d",
"7c7abe60-473d-4d6b-8271-78bb3e0d8bc2"
],
"Opportunities": [
"36aa1fad-af28-48a5-9ab9-f937b0669d0d",
"809f46aa-77aa-41f8-b0e4-8ff91bc26db9"
]
}
}
]