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": "e429f2f4-cafe-4b01-8871-d1f7c6854729",
"ParentId": "419b8c58-b4df-4f11-8186-1b8a23d45b5e",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"5dd324bc-92ec-4a39-8467-28648dcc2483",
"3f96848e-d1b7-4cd0-8be5-ba9d5c4ca42f"
],
"Companies": [
"276da7f4-0409-4598-929a-8bf507c549c2",
"74fa555c-5d2a-4cbb-8f5d-a3ec4af68036"
],
"Groups": [
"a0045418-9268-4f43-95ee-04d129497222",
"22de15c5-adee-4cad-9da8-78a021f536c8"
],
"Opportunities": [
"d5ab8f00-4cc8-43cf-ab0a-74f4c3612560",
"a8132633-99c3-4522-a1ad-da144ba46608"
]
}
},
{
"Id": "e429f2f4-cafe-4b01-8871-d1f7c6854729",
"ParentId": "419b8c58-b4df-4f11-8186-1b8a23d45b5e",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"5dd324bc-92ec-4a39-8467-28648dcc2483",
"3f96848e-d1b7-4cd0-8be5-ba9d5c4ca42f"
],
"Companies": [
"276da7f4-0409-4598-929a-8bf507c549c2",
"74fa555c-5d2a-4cbb-8f5d-a3ec4af68036"
],
"Groups": [
"a0045418-9268-4f43-95ee-04d129497222",
"22de15c5-adee-4cad-9da8-78a021f536c8"
],
"Opportunities": [
"d5ab8f00-4cc8-43cf-ab0a-74f4c3612560",
"a8132633-99c3-4522-a1ad-da144ba46608"
]
}
}
]