hex_api_user.create
You're seeing just the function
create
, go back to hex_api_user module for more information.
Specs
create(hex_core:config(), binary(), binary(), binary()) -> hex_api:response().
Creates a new user account.
Examples:
> hex_api_user:create(hex_core:default_config(), <<"user">>, <<"hunter42">>, <<"user@example.com">>). {ok, {201, ..., #{ <<"email">> => <<"user@example.com">>, <<"full_name">> => <<"John Doe">>, <<"handles">> => #{...}, <<"inserted_at">> => <<"2014-04-21T17:20:12Z">>, <<"level">> => <<"full">>, <<"updated_at">> => <<"2019-08-04T19:28:05Z">>, <<"url">> => <<"https://hex.pm/api/users/user">>, <<"username">> => <<"user">> }}}