Entities

URL:
https://<catalog-url>/<serviceName>/RelationalCatalogServer/entities
Methods:
GET
Version Introduced:
10.5

Description

An entity describes a table or view in a database. This resource provides an array of all the entities the service has access to.

Request Parameters

ParameterDetails

f

The response format. The default response format is html.

Values: html | json

Example Usage

https://services.myserver.com:port/arcgis/rest/services/<serviceName>/RelationalCatalogServer/entities?f=json

JSON Response Syntax

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
{
  "entities": [
    {
      "catalogId": "",  //unique ID for the entity
      "alias": "",      //user-friendly name (not guaranteed to be unique)
    }, …
  ]
}

JSON Response Example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  "entities": [
    {
      "catalogId": "dbo.flight_aircraft",
      "alias": "flight_aircraft"
    },
    {
      "catalogId": "dbo.flight_airline",
      "alias": "flight_airline"
    },
    {
      "catalogId": "dbo.flight_airport",
      "alias": "flight_airport"
    },
    {
      "catalogId": "dbo.flight_departure",
      "alias": "flight_departure"
    },
    {
      "catalogId": "dbo.flight_route",
      "alias": "flight_route"
    }
  ]
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.