App settings


This request returns the users app settings.

Resource

GET /me/appsettings

Parameters

Name Type Description

where

[String]

Additional search fields. The field appKind and appVersion are supported: where=appKind=[kind of the app],appVersion=[version of the app]

Payload

None

Context

Authorization

User

Errors

Example

Request
GET https://xelion.nl/api/v1/master/me/appsettings?where=appKind=test,appVersion=5
Response
{
    "data": [
        {
            "object": {
                "appKind": "test",
                "appVersion": "5",
                "oid": "2128551",
                "objectType": "XCCAppSettingContainer"
            },
            "links": [
                {
                    "rel": "self",
                    "method": "GET"
                }
            ]
        }
    ],
    "meta": {
        "links": [
            {
                "rel": "refresh",
                "href": "https://xelion.nl/api/v1/master/me/appsettings",
                "method": "GET"
            },
            {
                "rel": "next",
                "href": "https://xelion.nl/api/v1/master/me/appsettings?after=2128551",
                "method": "GET"
            },
            {
                "rel": "previous",
                "href": "https://xelion.nl/api/v1/master/me/appsettings?before=2128551",
                "method": "GET"
            }
        ],
        "paging": {
            "previousId": "2128551",
            "nextId": "2128551"
        }
    }
}