Skip to content

Instantly share code, notes, and snippets.

@ashutoshkrris
Created December 24, 2021 05:21
Show Gist options
  • Select an option

  • Save ashutoshkrris/b4cce29cf3fe1a4333206aa3c72ec6ed to your computer and use it in GitHub Desktop.

Select an option

Save ashutoshkrris/b4cce29cf3fe1a4333206aa3c72ec6ed to your computer and use it in GitHub Desktop.
API Endpoints
HTTP METHOD API ENDPOINT DESCRIPTION
GET /products Get a list of products.
GET /products?limit=x Get only x products.
GET /products/<product_id> Get a single product.
POST /products Create a new product.
PUT /products/<product_id> Update a product.
PATCH /products/<product_id> Partially update a product.
DELETE /products/<product_id> Delete a product.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment