Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 410 Bytes

README.md

File metadata and controls

16 lines (10 loc) · 410 Bytes

Attendant

A simple ruby wrapper for making Conductor Searchlight API requests. This gem handles making the correct authorization request and returns the results.

Example:

credentials = {
	email: "[email protected]",
	secret: "yourSecretKey",
	url: "http://api.conductor.com"
}

c = Attendant::SearchLight.new(config[:email], 	config[:secret], config[:url])

data = c.send_request "/v2/accounts"