GET api/CustomTablesManager

Gets all custom tables in the database

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of CustomTable
NameDescriptionTypeAdditional information
Name

string

None.

DisplayName

string

None.

IsLinkedToContactTable

boolean

None.

IsLinkedToCompanyTable

boolean

None.

IsLinkedToGroupTable

boolean

None.

IsLinkedToOpportunityTable

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Name": "sample string 1",
    "DisplayName": "sample string 2",
    "IsLinkedToContactTable": true,
    "IsLinkedToCompanyTable": true,
    "IsLinkedToGroupTable": true,
    "IsLinkedToOpportunityTable": true
  },
  {
    "Name": "sample string 1",
    "DisplayName": "sample string 2",
    "IsLinkedToContactTable": true,
    "IsLinkedToCompanyTable": true,
    "IsLinkedToGroupTable": true,
    "IsLinkedToOpportunityTable": true
  }
]