WuParty is a fairly lightweight wrapper for Wufoo’s REST API using HTTParty.
Wufoo’s REST API supports viewing and submitting entries, filtering entries, viewing reports, and viewing users.
This library supports all methods of Wufoo’s API version 3.0.
There is an older version of this library (version 0.1.x) that only supports version 2 of Wufoo’s API. Make sure you have latest version installed (1.0.0 or higher).
gem install wuparty
require 'wuparty' ACCOUNT = 'accountname' API_KEY = 'AAAA-BBBB-CCCC-DDDD' ENDPOINT_DOMAIN = 'wufoo.com' ENDPOINT_PREFIX = 'YourPrefix' wufoo = WuParty.new(ACCOUNT, API_KEY)
If your Wufoo domain is not “wufoo.com” (e.g. “wufoo.eu”) and/or your account prefix does not match your account name, you can pass those in:
wufoo = WuParty.new(ACCOUNT, API_KEY, domain: 'wufoo.eu', account_prefix: 'myaccount')
result = WuParty.login(myIntegrationKey, users_email, users_password) api_key = result['LoginResult']['ApiKey']
wufoo.forms form = wufoo.form('my-form-id')
form.entries # ...or filter entries (see http://wufoo.com/docs/api/v3/entries/get/#filter) form.entries(filters: [['Field1', 'Is_equal_to', 'Tim']])
# To submit, use field numbers shown on the 'API Information' page in Wufoo result = form.submit({ 'Field1' => 'Tim', 'Field2' => 'Morgan' }) if result['Success'] == 0 puts result['ErrorText'] end
# Any submission to this form will now post to the given url. result = form.add_webhook('http://www.postbin.org/zh9iy1') # Tell the webhook to include metadata in its postback result = form.add_webhook('http://www.postbin.org/zh9iy1', true) result = form.delete_webhook(result["WebHookPutResult"]["Hash"]) FORM_ID = 'my-form-id' # Or, directly through wufoo: result = wufoo.add_webhook(FORM_ID, 'http://www.postbin.org/zh9iy1') # Tell the webhook to include metadata in its postback result = wufoo.add_webhook(FORM_ID, 'http://www.postbin.org/zh9iy1', true) wufoo.delete_webhook(FORM_ID, result["WebHookPutResult"]["Hash"])
I’d love to hear from you if you have suggestions for improvement, bug fixes, or whatever. Email me at tim@timmorgan.org or fork the project and send a pull request.
To run the tests, you must create a form called “Test Form” and pass in its id via the ENV variable WUFOO_FORM_ID. Give the form a standard name and address field. Make the name field required. Then run:
WUFOO_ACCOUNT=accountname \ WUFOO_API_KEY=AAAA-BBBB-CCCC-DDDD \ WUFOO_FORM_ID=test-form \ rake test
Copyright © 2019 Tim Morgan
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.