module Bespokify::Client::ExportProfile

Public Instance Methods

create_export_profile(options = {}) click to toggle source
# File lib/bespokify/client/export_profile.rb, line 12
def create_export_profile(options = {})
  post('/exportProfiles', options)
end
delete_export_profile(export_profile_id) click to toggle source
# File lib/bespokify/client/export_profile.rb, line 20
def delete_export_profile(export_profile_id)
  delete("/exportProfiles/#{export_profile_id}")
end
export_profile(export_profile_id) click to toggle source
# File lib/bespokify/client/export_profile.rb, line 8
def export_profile(export_profile_id)
  get("/exportProfiles/#{export_profile_id}")
end
export_profiles(options = {}) click to toggle source
# File lib/bespokify/client/export_profile.rb, line 4
def export_profiles(options = {})
  get('/exportProfiles', options)
end
update_export_profile(export_profile_id, options = {}) click to toggle source
# File lib/bespokify/client/export_profile.rb, line 16
def update_export_profile(export_profile_id, options = {})
  patch("/exportProfiles/#{export_profile_id}", options)
end