Source code for api.currentuser.v1.user
"""Autogenerated API"""
from argus_cli.plugin import register_command
[docs]@register_command(extending=("currentuser","v1","user"))
def get_current_user(
json: bool = True,
verify: bool = True,
apiKey: str = None,
authentication: dict = {}
) -> dict:
"""Get the object representation of the currently logged in user (PUBLIC)
:raises AuthenticationFailedException: on 401
:returns: {'offset': 865, 'limit': 372, 'responseCode': 200, 'count': 23, 'metaData': {'additionalProperties': {}}, 'messages': [{'message': 'Rest system century suffer.', 'messageTemplate': 'Wife else child add.', 'field': 'Point case effect push four listen return.', 'parameter': {}, 'timestamp': 1003750768}], 'currentPage': 637, 'size': 561}
"""
from requests import get
from argus_api.exceptions import http
url = "https://portal.mnemonic.no/web/api/currentuser/v1/user".format()
headers = {
'Content-Type': 'application/json',
'User-Agent': 'ArgusToolbelt/'
}
if apiKey:
headers["Argus-API-Key"] = apiKey
elif authentication and isinstance(authentication, dict):
headers.update(authentication)
elif callable(authentication):
headers.update(authentication(url))
body = {
}
response = get(url,
json=body if body else None,
verify=verify,
headers=headers
)
if response.status_code == 401:
raise http.AuthenticationFailedException(response)
elif response.status_code == 403:
raise http.AccessDeniedException(response)
elif response.status_code == 412:
raise http.ValidationErrorException(response)
elif response.status_code == 404:
raise http.ObjectNotFoundException(response)
return response.json() if json else response