Skip to content

Service: User Setting Retrieval

Eliza Margaretha edited this page Feb 5, 2019 · 4 revisions

Retrieves settings of a user. User settings contains user preferences for various default settings, for instance default foundries for specific layers such as lemma and part of speech.

Available in: full version

Method: GET

Service URL: {root}/{api-version}/~{username}/setting

Parameters

Header Parameters

Name Required Description Value
Authorization yes HTTP authentication with schemes: Api, Bearer user authentication token: Api token, OAuth2 access token (Bearer)
Content-Type yes content type of the input data application/json

Examples

In the following example, multiple values are separated by empty space, see "metadata".

curl -H 'Content-Type: application/json' 
     -H 'Authorization: Api eyJhbGciOiJIUzI1NiJ9.eyJleHAiOjE1MTM1MzI3O
       TAxMzQsInN1YiI6InVzZXJuYW1lIiwiaXNzIjoiaHR0cDpcL1wva29yYXAuaWRzLW1
       hbm5oZWltLmRlIn0.p4jHIGeVwTpYAPFiWAd0R8Zcazyg7e9_tUGxOyFGUlo'     
      http://localhost:8089/api/v1.0/~dory/setting

Response

This is only an example. Setting keys are not strictly defined.

{
    "pos-foundry": "marmot",
    "resultPerPage": "25",
    "metadata": "author title textSigle availability"
}
Clone this wiki locally