Skip to content

FortnoxAB/api-example-ruby

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

API Exemples for Ruby

Here you can download the example code used in the API-documentation (http://developer.fortnox.se/examples/code-examples/ruby/). Feel free to add new examples for other HTTP libraries or fix any bugs you find by pull request.

net_http.rb

Example code for Net::HTTP from the Ruby standard library.

Creating a new resource

response = post( '/articles', { 'Article' => { 'Description' => 'My description' }} )
article_number = response[ 'Article' ][ 'ArticleNumber' ]

Updating a resource

put( '/articles/' + article_number, { 'Article' => { 'Description' => 'My updated description' }} )

Retriving an existing resource

get( '/articles/' + article_number )

Deleting a resource

delete( '/articles/' + article_number )

Retriving a nonexistant resource

get( '/articles/' + article_number )

httparty.rb

Example code for the well used HTTParty library by John Nunemaker.

Creating a new resource

response = Fortnox.post( '/articles', { 'Article' => { 'Description' => 'My updated description' }} )
article_number = response[ 'Article' ][ 'ArticleNumber' ]

Updating a resource

Fortnox.put( '/articles/'+article_number, { 'Article' => { 'Description' => 'My more updated description' }})

Retriving an existing resource

Fortnox.get( '/articles/' + article_number )

Deleting a resource

Fortnox.delete( '/articles/' + article_number )

Retriving a nonexistant resource

Fortnox.get( '/articles/' + article_number )

Licence

The MIT License (MIT)

Copyright (c) 2013 Fortnox AB, Jonas Schubert Erlandsson

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.

Releases

No releases published

Packages

No packages published

Languages