11
12
13
14
15
|
# File 'lib/validic/rest/profile.rb', line 11
def create_profile(options = {})
token = options.delete(:authentication_token)
resp = post_request(:profile, authentication_token: token, profile: options)
Validic::Profile.new(resp['profile'])
end
|