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": "b320cec0-7ae5-4698-a382-1318ef6b8df0",
"ParentId": "49c6040c-fe51-4311-a595-b2048d0a65b3",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"fe905a62-8363-481e-8e18-e91b78521dce",
"bbf6bdea-5b6b-4241-b455-09ee56f0e5aa"
],
"Companies": [
"9783ba7a-bdff-41f0-a003-1a92b9c3d82d",
"42e6996e-4403-4aba-aff0-4d879c1d46b7"
],
"Groups": [
"070d0198-a679-4dd5-bbb1-815975d6ee75",
"a14758f6-a077-4880-866b-f0c1f9c16391"
],
"Opportunities": [
"5dd8a7e3-4a8e-46fa-b1f8-6c718cab4935",
"e3f1575a-2a41-4cda-a1a1-9f8e0bcc0f6b"
]
}
},
{
"Id": "b320cec0-7ae5-4698-a382-1318ef6b8df0",
"ParentId": "49c6040c-fe51-4311-a595-b2048d0a65b3",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"fe905a62-8363-481e-8e18-e91b78521dce",
"bbf6bdea-5b6b-4241-b455-09ee56f0e5aa"
],
"Companies": [
"9783ba7a-bdff-41f0-a003-1a92b9c3d82d",
"42e6996e-4403-4aba-aff0-4d879c1d46b7"
],
"Groups": [
"070d0198-a679-4dd5-bbb1-815975d6ee75",
"a14758f6-a077-4880-866b-f0c1f9c16391"
],
"Opportunities": [
"5dd8a7e3-4a8e-46fa-b1f8-6c718cab4935",
"e3f1575a-2a41-4cda-a1a1-9f8e0bcc0f6b"
]
}
}
]