Giter Club home page Giter Club logo

ticket-sales's Introduction

Ticket Sales

JSON API for a ticket-selling platform with very simple features:

  • Get info about an event
  • Get info about available tickets
  • Purchase one (or more) of available tickets

Setup

$ git clone https://github.com/aitorlb/ticket-sales
$ cd ticket-sales/
$ bundle install
$ bundle exec rake db:setup
$ bundle exec rspec

Run

$ bundle exec rails s

Sample calls

# GET all events
$ curl http://localhost:3000/api/v1/events
# Get info about an event
$ curl http://localhost:3000/api/v1/events/1
# Get available tickets
$ curl http://localhost:3000/api/v1/events/1/tickets
# Authenticate (a token will be returned)
$ curl -H "Content-Type: application/json" -X POST -d '{"email":"[email protected]","password":"password"}' http://localhost:3000/api/v1/authenticate
# Updates checkout cart (locks tickets for the user to allow time for collecting payment information)
curl -H "Authorization: <returned_token>" -H "Content-Type: application/json" -X PUT -d '{"ticket_count":"1"}' http://localhost:3000/api/v1/events/1/purchases
# Purchase one (or more) of available tickets (makes the actual purchase if payment is successful)
curl -H "Authorization: <returned_token>" -H "Content-Type: application/json" -X POST -d '{"ticket_count":"1", "payment_token":"payment_token"}' http://localhost:3000/api/v1/events/1/purchases

ticket-sales's People

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.