Skip to main content

GetServer

GetServer

This method returns information about the server, including the Source Code REST API version and namespaces that are available on the server.

For an example and additional details, refer to Getting Information about the InterSystems IRIS Server.

URL

GET https://<baseURL>/api/atelier/

Where <baseURL> is the base URL for your instance.

JSON Messages

The following returned content is a server descriptor:

{
  "status": {
    "errors": [],
    "summary": ""
  },
  "console": [],
  "result": {
    "content": {
      "version": "IRIS for Windows (x86-64) 2018.1.1 (Build 515U) Mon Feb 5 2018 08:24:13 EST",
      "id": "98E1697E-13F9-4D6A-8B73-827873D1D61C",
      "api": 2,
      "features": [
...
      ],
      "namespaces": [
        "%SYS",
        "USER"
      ]
    }
    }
}

HTTP Return Codes

  • HTTP 200 if OK.

  • HTTP 500 if an unexpected error occurred (details will be in status error array).

FeedbackOpens in a new tab