Module: ConfigStore::AccountAPIMethods

Included in:
API
Defined in:
lib/configstore/apis/account_api_methods.rb

Instance Method Summary collapse

Instance Method Details

#create_accountObject



16
17
18
19
20
# File 'lib/configstore/apis/account_api_methods.rb', line 16

def 
	return with_response_handling do
		self.class.post("/accounts", @options)
	end
end

#delete_account(account_uuid) ⇒ Object



22
23
24
25
26
# File 'lib/configstore/apis/account_api_methods.rb', line 22

def ()
	return with_response_handling do
		self.class.delete("/accounts/#{}", @options)
	end
end

#get_account(account_uuid) ⇒ Object



10
11
12
13
14
# File 'lib/configstore/apis/account_api_methods.rb', line 10

def ()
	return with_response_handling do
		self.class.get("/accounts/#{}", @options)
	end
end

#list_accountsObject



4
5
6
7
8
# File 'lib/configstore/apis/account_api_methods.rb', line 4

def list_accounts
	return with_response_handling do
		self.class.get("/accounts", @options)
	end
end