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": "411f1454-4a61-401e-a205-5014546460a9",
"ParentId": "ca0a4fb1-7f1b-450d-a863-72c427f4f04d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"301a3b53-c115-478b-8685-8e67c6a0f080",
"dc6946ca-4fa9-452e-a729-ac1cad6c77fe"
],
"Companies": [
"49ec8bfc-9e93-434b-b08f-f2693055687f",
"8ccfb030-070f-4cbd-becc-501f7260096e"
],
"Groups": [
"c8cb9ed9-8ca7-4873-97a9-525ae280ce1a",
"c3652faa-2fea-40c7-a2d0-d4347335870c"
],
"Opportunities": [
"bb4c3638-a5f4-4aa0-883f-01a08bd5635e",
"078d7717-1e65-4bc2-8d83-13d8ed4ac0bd"
]
}
},
{
"Id": "411f1454-4a61-401e-a205-5014546460a9",
"ParentId": "ca0a4fb1-7f1b-450d-a863-72c427f4f04d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"301a3b53-c115-478b-8685-8e67c6a0f080",
"dc6946ca-4fa9-452e-a729-ac1cad6c77fe"
],
"Companies": [
"49ec8bfc-9e93-434b-b08f-f2693055687f",
"8ccfb030-070f-4cbd-becc-501f7260096e"
],
"Groups": [
"c8cb9ed9-8ca7-4873-97a9-525ae280ce1a",
"c3652faa-2fea-40c7-a2d0-d4347335870c"
],
"Opportunities": [
"bb4c3638-a5f4-4aa0-883f-01a08bd5635e",
"078d7717-1e65-4bc2-8d83-13d8ed4ac0bd"
]
}
}
]