List all Available Tables - spectrum_spatial - Latest

Spectrum Spatial Guide

Product type
Software
Portfolio
Locate
Product family
Spectrumâ„¢ software
Product
Spectrumâ„¢ software > Spatial > Spectrum Spatial
Version
Latest
ft:locale
en-US
Product name
Spectrum Technology Platform
ft:title
Spectrum Spatial Guide
Copyright
2025
First publish date
2007
ft:lastEdition
2025-09-26
ft:lastPublication
2025-09-26T10:03:58.880000

Description

Returns a list of named tables that are available within the repository.

ACL Authorization Flow

To list all the named tables stored in a repository, the user (or the role they belong to) needs EXECUTE permission on the Named table.

Note: The response will contain those tables on which the user has EXECUTE permission. If the user has no EXECUTE permissions on any tables, then the response contains an empty list.

HTTP GET URL Format

The following format is used for HTTP GET requests:

HTTP GET /tables.rep

Parameters

For information on the parameter types listed below, see Request URL Data Types.

Parameter Type Required Description
rep String yes The representation to be returned. Supported representation is json.
tableType String no The type of tables to return:
  • parameterizedviewtables returns parameterized views (view tables that contain bind parameters)
  • viewtables returns static views (view tables that do not contain bind parameters)
  • tables returns named tables (all view tables)
  • all returns parameterized views, static views, and named tables. This is the same as when tableType is not specified.

Returns

Returns a list of tables in the specified format.

Examples

Returns a list of available tables in the repository, as a comma delimited list, in the Locale English (US)

http://hostname:port/rest/Spatial/FeatureService/tables.json

Returns a list of only those view tables that contain bind parameters.

http://hostname:port/rest/Spatial/FeatureService/tables.json?tableType=parameterizedviewtables

Returns a list of view tables that do not contain bind parameters.

http://hostname:port/rest/Spatial/FeatureService/tables.json?tableType=viewtables