Skip To Content
ArcGIS Developer
Dashboard

Entities

  • URL:https://<catalog-url>/<serviceName>/RelationalCatalogServer/entities
  • Child Resources:Entity
  • 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


{
  "entities": [
    {
      "catalogId": "",  //unique ID for the entity
      "alias": "",      //user-friendly name (not guaranteed to be unique)
    }, …
  ]
}

JSON Response Example


{
  "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"
    }
  ]
}