Class: XingApi::User::Qualification

Inherits:
Base
  • Object
show all
Defined in:
lib/xing_api/user/qualification.rb

Class Method Summary collapse

Methods inherited from Base

request, request_with_body

Class Method Details

.create(description, options = {}) ⇒ Object



4
5
6
7
8
9
10
# File 'lib/xing_api/user/qualification.rb', line 4

def self.create(description, options = {})
  request(
    :post,
    '/v1/users/me/educational_background/qualifications',
    { description: description }.merge(options)
  )
end