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": "adc00507-fefa-43fc-bdfe-f2dba299d548",
"ParentId": "0302b15c-921a-4d5f-8329-a9e9dc413812",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"e5fb1a4a-887e-44d4-949d-14d8d363a968",
"789e0034-9f80-4089-b2dd-918864c31c65"
],
"Companies": [
"773846e7-31d3-413b-a0fb-078c7d306767",
"f86ee635-a05e-4ba2-8529-1ab5e3280639"
],
"Groups": [
"c282cca0-b736-43d8-8faf-a6c024609b1d",
"8c774b45-65d0-4b37-b501-8c90dbfea46b"
],
"Opportunities": [
"82eb48a1-ee99-4120-88c5-fb41cd44c75b",
"091d0558-45fa-4d36-97ab-da7e119c8b62"
]
}
},
{
"Id": "adc00507-fefa-43fc-bdfe-f2dba299d548",
"ParentId": "0302b15c-921a-4d5f-8329-a9e9dc413812",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"e5fb1a4a-887e-44d4-949d-14d8d363a968",
"789e0034-9f80-4089-b2dd-918864c31c65"
],
"Companies": [
"773846e7-31d3-413b-a0fb-078c7d306767",
"f86ee635-a05e-4ba2-8529-1ab5e3280639"
],
"Groups": [
"c282cca0-b736-43d8-8faf-a6c024609b1d",
"8c774b45-65d0-4b37-b501-8c90dbfea46b"
],
"Opportunities": [
"82eb48a1-ee99-4120-88c5-fb41cd44c75b",
"091d0558-45fa-4d36-97ab-da7e119c8b62"
]
}
}
]