Get app settings object


This request returns the information of a specific app setting object/container.

Resource

GET /me/appsettings/<OID>

Where OID is the object ID of the app settings object.

Parameters

None

Payload

None

Context

Authorization

User

Errors

Example

Request
GET https://xelion.nl/api/v1/master/me/appsettings/1033697
Response
{
    "object": {
        "appKind": "test",
        "appVersion": "5",
        "settings": [
            {
                "key": "windowssize",
                "value": "1000*1000",
                "oid": "2128579",
                "objectType": "XCCAppSetting"
            }
        ],
        "oid": "2128551",
        "objectType": "XCCAppSettingContainer"
    },
    "links": [
        {
            "rel": "self",
            "method": "GET"
        }
    ]
}