.. _kinto-api-endpoints: 1.x ### Full reference ============== Full detailed API documentation: .. toctree:: :maxdepth: 1 authentication accounts openid buckets collections records groups permissions filtering sorting pagination selecting_fields history quotas utilities admin batch openapi flush timestamps backoff errors deprecation Cheatsheet ========== +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | Method | URI | Description | +==========+==============================================================================================+=========================================================+ | `GET` | :ref:`/ ` | :ref:`Information about the running instance | | | | ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `POST` | :ref:`/batch ` | :ref:`Send multiple operations in one request ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `GET` | :ref:`/__heartbeat__ ` | :ref:`Return the status of dependent services | | | | ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `GET` | :ref:`/__api__ ` | :ref:`Return the OpenAPI description of the running | | | | instance ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | **Buckets** | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `POST` | :ref:`/buckets ` | :ref:`Create a bucket ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `GET` | :ref:`/buckets ` | :ref:`List buckets ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `DELETE` | :ref:`/buckets ` | :ref:`Delete every writable buckets ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `PUT` | :ref:`/buckets/(bucket_id) ` | :ref:`Create or replace a bucket ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `PATCH` | :ref:`/buckets/(bucket_id) ` | :ref:`Modify an existing bucket ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `GET` | :ref:`/buckets/(bucket_id) ` | :ref:`Retrieve an existing bucket ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `DELETE` | :ref:`/buckets/(bucket_id) ` | :ref:`Delete a bucket ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | **Groups** | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `POST` | :ref:`/buckets/(bucket_id)/groups ` | :ref:`Create a group ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `GET` | :ref:`/buckets/(bucket_id)/groups ` | :ref:`Retrieve the list of bucket's group ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `DELETE` | :ref:`/buckets/(bucket_id)/groups ` | :ref:`Delete writable groups ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `PUT` | :ref:`/buckets/(bucket_id)/groups/(group_id) ` | :ref:`Update a group ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `PATCH` | :ref:`/buckets/(bucket_id)/groups/(group_id) ` | :ref:`Modify an existing group ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `GET` | :ref:`/buckets/(bucket_id)/groups/(group_id) ` | :ref:`Retrieve a group ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `DELETE` | :ref:`/buckets/(bucket_id)/groups/(group_id) ` | :ref:`Delete a group ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | **Collections** | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `GET` | :ref:`/buckets/(bucket_id)/collections ` | :ref:`List bucket's collections ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `DELETE` | :ref:`/buckets/(bucket_id)/collections ` | :ref:`Delete writable collections ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `POST` | :ref:`/buckets/(bucket_id)/collections ` | :ref:`Create a collection ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `PUT` | :ref:`/buckets/(bucket_id)/collections/(collection_id) ` | :ref:`Create or replace a collection ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `PATCH` | :ref:`/buckets/(bucket_id)/collections/(collection_id) ` | :ref:`Modify an existing collection ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `GET` | :ref:`/buckets/(bucket_id)/collections/(collection_id) ` | :ref:`Retreive an existing collection ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `DELETE` | :ref:`/buckets/(bucket_id)/collections/(collection_id) ` | :ref:`Delete a collection ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | **Records** | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `POST` | :ref:`/buckets/(bucket_id)/collections/(collection_id)/records ` | :ref:`Upload a record ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `GET` | :ref:`/buckets/(bucket_id)/collections/(collection_id)/records ` | :ref:`Retrieve stored records ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `DELETE` | :ref:`/buckets/(bucket_id)/collections/(collection_id)/records ` | :ref:`Delete stored records ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `PUT` | :ref:`/buckets/(bucket_id)/collections/(collection_id)/records/(record_id) ` | :ref:`Create or replace a record ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `PATCH` | :ref:`/buckets/(bucket_id)/collections/(collection_id)/records/(record_id) ` | :ref:`Modify an existing record ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `GET` | :ref:`/buckets/(bucket_id)/collections/(collection_id)/records/(record_id) ` | :ref:`Retrieve a single record ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+ | `DELETE` | :ref:`/buckets/(bucket_id)/collections/(collection_id)/records/(record_id) ` | :ref:`Delete a single record ` | +----------+----------------------------------------------------------------------------------------------+---------------------------------------------------------+