Append [action] and if necessary [object-id] (supported for GET, PUT, PATCH, DELETE) to querystring.
sample: /sample/324
Add json to request-body if necessary (supported for POST, PUT, PATCH). To get the required json model call /[action]/json.
sample: /sample/json
For some action there are query parameters available (currently supported for GET if no ID submitted). To get the required or optional parameters call /[action]/params.
sample: /sample/params
This webservice is protected with 'Basicure' authentication. The 'Authorization'-header is composed of the following.
user: username (here 'user')
ts: unixtimestamp utc
hash: HMAC(Algorithm: SHA256) binary hash as base64 string (Encoding: ASCII)
key is users password (here 'password')
message is [action lowercase]/[HTTP-METHOD UPPERCASE]/[timestamp] (sample: sample/GET/1745906541)