Get Configuration v2

post

/jderest/v2/defaultconfig

Get AIS Server configuration information and available capabilities.

Request

Query Parameters
Back to Top

Response

Supported Media Types

200 Response

Successful Execution
Body ()
Root Schema : DefaultConfig
Type: object
Response Object for Default Config Service.
Show Source
Nested Schema : capabilityList
Type: array
The list of capabilities of this AIS Server.
Show Source
Nested Schema : Capability
Type: object
Information about an individual capability.
Show Source

415 Response

Invalid Content-Type Header - Must use application/json

500 Response

Server Failed to Process Request
Body ()
Root Schema : ServiceErrorResponse
Type: object
Error Response
Show Source
Back to Top

Examples

Example Request

The following shows an example of a default config request. The default configurations currently on the AIS Server are returned in the response.

curl -i -X POST -H "Content-Type:application/json" http://ais_server_url/jderest/v2/defaultconfig/

Example Response

The following example shows the contents of the response body.

{
    "jasHost": "aishot",
    "jasPort": "7552",
    "jasProtocol": "http",
    "defaultEnvironment": "JDV920",
    "defaultRole": "*ALL",
    "displayEnvironment": true,
    "displayRole": true,
    "displayJasServer": true,
    "defaultJasServer": "http://jashost:7552",
    "ssoAllowed": true,
    "sessionTimeout": "20",
    "timeToLive": "720",
    "aisVersion": "EnterpriseOne 9.2.2.4",
    "capabilityList": [
        {
            "name": "version2services",
            "shortDescription": "Version 2 Service URL",
            "longDescription": "New capabilities available with V2 Services",
            "asOfRelease": "9.2.1.2",
            "sinceVersion": "v2"
        },
        {
            "name": "nextPage",
            "shortDescription": "Next Page for App Stack and Data Request",
            "longDescription": "Ability to request next data set for Application Stack and Data Request",
            "asOfRelease": "9.2.1.2",
            "sinceVersion": "v2"
        },
        {
            "name": "simpleGetServices",
            "shortDescription": "Simple GET Data Requests",
            "longDescription": "Ability to perform Data Requests with GET operation",
            "asOfRelease": "9.2.1.2",
            "sinceVersion": "v2"
        },
        {
            "name": "formServiceOrderBy",
            "shortDescription": "Order By in Form Service",
            "longDescription": "Ability to order by columns in a grid with form service",
            "asOfRelease": "9.2.1.2",
            "sinceVersion": "v2"
        },
        {
            "name": "messageService",
            "shortDescription": "Send Message Service",
            "longDescription": "Ability to send E-mail or Work Center messages",
            "asOfRelease": "9.2.1.2",
            "sinceVersion": "v2"
        },
        {
            "name": "reportService",
            "shortDescription": "Report Service",
            "longDescription": "Ability to launch an determine the status of an EntepriseOne Report",
            "asOfRelease": "9.2.2.4",
            "sinceVersion": "v2"
        }
    ],
    "requiredCapabilityMissing": false,
    "keepJasSessionOpen": true,
    "disconnectedTimeout": "12",
    "isRunningInWLS": true,
    "readCachTTL": 60000,
    "defaultCachingOn": true
}
Back to Top