Last active
August 29, 2015 14:15
-
-
Save adamlwalker/a8046b14007f961bfadd to your computer and use it in GitHub Desktop.
get_job_status API call for FreezerPro
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'rest_client' | |
| params = { | |
| username: 'adam', | |
| password: 'XXXX', | |
| method: 'get_job_status', | |
| job_id: '45c443bba2756e6103b07aae30212528' | |
| } | |
| response = RestClient.post "http://enterprise3.freezerpro.com/api", params | |
| puts response |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment