.. _quickstart: Quickstart ========== .. currentmodule:: fastapi_jsonapi It's time to write your first advanced REST API. This guide assumes you have a working understanding of FastAPI, and that you have already installed both FastAPI and FastAPI-JSONAPI. If not, then follow the steps in the :ref:`installation` section. In this section you will learn basic usage of FastAPI-JSONAPI around a small tutorial that uses the SQLAlchemy data layer. This tutorial shows you an example of a user and their computers. Advanced example ---------------- An example of FastAPI-JSONAPI API looks like this: .. literalinclude:: ../examples/api_for_sqlalchemy/urls.py :language: python This example provides the following API: +-----------------+--------+-------------+--------------------------------+ | url | method | endpoint | action | +=================+========+=============+================================+ | /users | GET | user_list | Retrieve a collection of users | +-----------------+--------+-------------+--------------------------------+ | /users | POST | user_list | Create a user | +-----------------+--------+-------------+--------------------------------+ | /users/ | GET | user_detail | Retrieve details of a user | +-----------------+--------+-------------+--------------------------------+ | /users/ | PATCH | user_detail | Update a user | +-----------------+--------+-------------+--------------------------------+ | /users/ | DELETE | user_detail | Delete a user | +-----------------+--------+-------------+--------------------------------+ in developing +-----------------------------------------+--------+-----------------+-----------------------------------------------------+ | url | method | endpoint | action | +=========================================+========+=================+=====================================================+ | /users//group | GET | computer_list | Retrieve a collection computers related to a user | +-----------------------------------------+--------+-----------------+-----------------------------------------------------+ | /users//group | POST | computer_list | Create a computer related to a user | +-----------------------------------------+--------+-----------------+-----------------------------------------------------+ | /users//relationships/group | GET | user_computers | Retrieve relationships between a user and computers | +-----------------------------------------+--------+-----------------+-----------------------------------------------------+ | /users//relationships/computers | POST | user_computers | Create relationships between a user and computers | +-----------------------------------------+--------+-----------------+-----------------------------------------------------+ | /users//relationships/computers | PATCH | user_computers | Update relationships between a user and computers | +-----------------------------------------+--------+-----------------+-----------------------------------------------------+ | /users//relationships/computers | DELETE | user_computers | Delete relationships between a user and computers | +-----------------------------------------+--------+-----------------+-----------------------------------------------------+ | /computers | GET | computer_list | Retrieve a collection of computers | +-----------------------------------------+--------+-----------------+-----------------------------------------------------+ | /computers | POST | computer_list | Create a computer | +-----------------------------------------+--------+-----------------+-----------------------------------------------------+ | /computers/ | GET | computer_detail | Retrieve details of a computer | +-----------------------------------------+--------+-----------------+-----------------------------------------------------+ | /computers/ | PATCH | computer_detail | Update a computer | +-----------------------------------------+--------+-----------------+-----------------------------------------------------+ | /computers/ | DELETE | computer_detail | Delete a computer | +-----------------------------------------+--------+-----------------+-----------------------------------------------------+ | /computers//owner | GET | user_detail | Retrieve details of the owner of a computer | +-----------------------------------------+--------+-----------------+-----------------------------------------------------+ | /computers//owner | PATCH | user_detail | Update the owner of a computer | +-----------------------------------------+--------+-----------------+-----------------------------------------------------+ | /computers//owner | DELETE | user_detail | Delete the owner of a computer | +-----------------------------------------+--------+-----------------+-----------------------------------------------------+ | /computers//relationships/owner | GET | user_computers | Retrieve relationships between a user and computers | +-----------------------------------------+--------+-----------------+-----------------------------------------------------+ | /computers//relationships/owner | POST | user_computers | Create relationships between a user and computers | +-----------------------------------------+--------+-----------------+-----------------------------------------------------+ | /computers//relationships/owner | PATCH | user_computers | Update relationships between a user and computers | +-----------------------------------------+--------+-----------------+-----------------------------------------------------+ | /computers//relationships/owner | DELETE | user_computers | Delete relationships between a user and computers | +-----------------------------------------+--------+-----------------+-----------------------------------------------------+ Save `this file `_ as api.py and run it using your Python interpreter. Note that we've enabled messages. :: $ python api.py * Running on http://127.0.0.1:8082/ * Restarting with reloader .. warning:: Debug mode should never be used in a production environment! Classical CRUD operations ------------------------- Create object ~~~~~~~~~~~~~ Request: .. literalinclude:: ./http_snippets/snippets/relationship_api__create_computer :language: HTTP Response: .. literalinclude:: ./http_snippets/snippets/relationship_api__create_computer_result :language: HTTP List objects ~~~~~~~~~~~~ Request: .. literalinclude:: ./http_snippets/snippets/relationship_api__get_computers :language: HTTP Response: .. literalinclude:: ./http_snippets/snippets/relationship_api__get_computers_result :language: HTTP Update object ~~~~~~~~~~~~~ Request: .. literalinclude:: ./http_snippets/snippets/relationship_api__patch_computer :language: HTTP Response: .. literalinclude:: ./http_snippets/snippets/relationship_api__patch_computer_result :language: HTTP Delete object ~~~~~~~~~~~~~ Request: .. literalinclude:: ./http_snippets/snippets/relationship_api__delete_computer :language: HTTP Response: .. literalinclude:: ./http_snippets/snippets/relationship_api__delete_computer_result :language: HTTP Relationships ------------- .. note:: Now let's use relationships tools. First, create 3 computers named "Halo", "Nestor" and "Commodore". We assume that Halo has id=2, Nestor id=3 and Commodore id=4. Create object with related object(s) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Request: .. literalinclude:: ./http_snippets/snippets/relationship_api__create_user_with_computer_relationship :language: HTTP Response: .. literalinclude:: ./http_snippets/snippets/relationship_api__create_user_with_computer_relationship_result :language: HTTP You can see that we have added the query string parameter "include" to the URL .. sourcecode:: http POST /users?include=computers HTTP/1.1 Thanks to this parameter, the related computers' details are included in the result. If you want to learn more: :ref:`include_related_objects` or :ref:`updated_includes_example` Update object and his relationships ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Now John sell his Halo (id=2) and buys a new computer named Nestor (id=3). So we want to link this new computer to John. John have also made a mistake in his email so let's update these 2 things in the same time. Request: .. literalinclude:: ./http_snippets/snippets/relationship_api__update_user_with_computer_relationship :language: HTTP Response: .. literalinclude:: ./http_snippets/snippets/relationship_api__update_user_with_computer_relationship_result :language: HTTP Create relationship ~~~~~~~~~~~~~~~~~~~ Now John buys a new computer named Commodore (id=4) so let's link it to John. Request: .. literalinclude:: ./http_snippets/snippets/relationship_api__create_computer_relationship_for_user :language: HTTP Response: .. literalinclude:: ./http_snippets/snippets/relationship_api__create_computer_relationship_for_user_result :language: HTTP Load user with all the related computers ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Request: .. literalinclude:: ./http_snippets/snippets/relationship_api__get_user_with_computers :language: HTTP Response: .. literalinclude:: ./http_snippets/snippets/relationship_api__get_user_with_computers_result :language: HTTP If you want retrieve relationships only you can use the relationship endpoint associated with target resource. Request: .. literalinclude:: ./http_snippets/snippets/relationship_api__get_user_with_computers_as_relationship :language: HTTP Response: .. literalinclude:: ./http_snippets/snippets/relationship_api__get_user_with_computers_as_relationship_result :language: HTTP Check user's computers without loading actual user ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Request: .. literalinclude:: ./http_snippets/snippets/relationship_api__get_user_related_computers :language: HTTP Response: .. literalinclude:: ./http_snippets/snippets/relationship_api__get_user_related_computers_result :language: HTTP Delete relationship ~~~~~~~~~~~~~~~~~~~ Now John sells his old Nestor computer, so let's unlink it from John. Request: .. literalinclude:: ./http_snippets/snippets/relationship_api__delete_computer_relationship :language: HTTP Response: .. literalinclude:: ./http_snippets/snippets/relationship_api__delete_computer_relationship_result :language: HTTP If you want to see more examples visit `JSON API 1.0 specification `_