module Ruby::Identitas::Endpoints::User

Public Instance Methods

create_user(options = {}) click to toggle source
# File lib/ruby/identitas/endpoints/user.rb, line 5
def create_user(options = {})
  options.merge!({access_token: @token})
  endpoint = build_endpoint("/v1/users")
  self.class.post(endpoint, query: options)
end