Documentation Center

Fetch Global Configuration

Fetches the entire global configuration resource.

Request

URI: /v2/config

HTTP Method: GET

Header params:
  • Accept: [application/json] OR [application/xml]
  • Content-Type: [application/json] OR [application/xml]

Response

Success
  • XML: <configuration><configitem value="en" name="app.language"/></configuration>
  • JSON: {"app.language":"en"}
Failed
  • XML: <result message="Your account does not have permission to perform this action." messageKey="unauthorized.noauth" status="FAIL" statusCode="5000"/>
  • JSON: {"statusCode":5000,"messageKey":"unauthorized.noauth","message":"Your account does not have permission to perform this action.","status":"FAIL","info":[]}

Permissions

"Use application"

Example

Request:

GET http://example.corp:8080/LiveContent/v2/config

Response:

<configuration><configitem value="en" name="app.language"/></configuration>