nerves_hub_user_api v0.4.0 NervesHubUserAPI.User

Manage NervesHub users

Path: /users

Link to this section Summary

Functions

Validate authtication of an existing user

Returns information about the user

Sign a user certificate for an existing user

Link to this section Functions

Link to this function auth(email, password)
auth(binary(), binary()) :: {:error, any()} | {:ok, any()}

Validate authtication of an existing user.

Verb: POST Path: /users/auth

Link to this function me(auth)
me(NervesHubUserAPI.Auth.t()) :: {:error, any()} | {:ok, any()}

Returns information about the user.

Verb: GET Path: /users/me

Link to this function register(username, email, password)
register(binary(), binary(), binary()) :: {:error, any()} | {:ok, any()}

Register a new user.

Verb: POST Path: /users/register

Link to this function sign(email, password, csr, description)
sign(binary(), binary(), binary(), binary()) :: {:error, any()} | {:ok, any()}

Sign a user certificate for an existing user.

Verb: POST Path: /users/sign