Lessons: 10Length: 46 minutes

Next lesson playing in 5 seconds

Cancel
  • Overview
  • Transcript

1.2 What We'll Be Building

In this course we will be creating a simple REST API. Imagine that we have a mobile application for looking up cars: we will build that API, with basic create, read, update and delete functionality.

Related Links

1.2 What We'll Be Building

Hey everybody welcome back, in this quarter we will be creating a simple restful API. Well, the idea here is that we have a hypothetical mobile application that needs to consume an API. This API will be providing create, update, delete, and search functionality to this app. Now we won't be covering every single aspect of creating restful API in this course. If you want that, I encourage you to read some of the documentation after this course. But instead, the main purpose of this course is to give you a hands on experience for getting started with Phalcon. You will be learning a lot of interesting things throughout this course, but some of them are starting with creating the basic structure for our Phalcon project, creating restful endpoints, creating models and validations, creating the database, connecting it with your API, defining some get requests for fetching record and running number plates for cars. By the way, this API is going to be all about cars, then we will go through post, put and lead request for create, update and remove operations and lastly some testing. It's going to be very interesting course, I'm really excited about it. So let's start it without further ado.

Back to the top