Skip to main content

GetNamespace

GetNamespace

This method returns information about a specific namespace.

URL

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

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

JSON Messages

The following is the returned content information about the namespace USER:

{
    "status": {
        "errors": [],
        "summary": ""
    },
    "console": [],
    "result": {
        "content": {
            "name": "USER",
            "db": [
                {
                    "name": "USER",
                    "crhash": "3A1A0E8B6C8",
                    "default": true,
                    "dbsys": false
                },
                {
                    "name": "IRISLIB",
                    "crhash": "A56AAA8D5418",
                    "default": false,
                    "dbsys": true
                },
                {
                    "name": "IRISLOCALDATA",
                    "crhash": "3A1A0551876",
                    "default": false,
                    "dbsys": false
                },
                {
                    "name": "IRISSYS",
                    "crhash": "3A19FFD2EF0",
                    "default": false,
                    "dbsys": true
                }
            ],
            "features": [
                {
                    "name": "ENSEMBLE",
                    "enabled": false
                }
            ]
        }
    }
}

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