Coder Social home page Coder Social logo

cms_server's Introduction

CMS_server

CMS Server

API Documentation


User Register

New user registration in CMS app

  • URL

    /users/register

  • Method:

    POST

  • Request Headers

    key value required
    Content-Type application/x-www-form-urlencoded true
  • URL Params

    none

  • Data Params

    key value required
    name <YOUR_NAME> true
    email <YOUR_EMAIL> true
    password <YOUR_PASSWORD_HERE> true
  • Success Response:

    • Code: 201 CREATED
      Content:
      {
      "id": 1,
      "name": "Huey McMeow",
      "email": "[email protected]"
      }
  • Error Response:

    • Code: 400 BAD REQUEST
      Content:

      { "error" : "name can't be empty" }

      OR

      { "error" : "email already exists" }

      OR

      { "error" : "email can't be empty" }

      OR

      { "error" : "invalid email format" }

      OR

      { "error" : "password can't be empty" }

      OR

      { "error" : "password must be at least 8 character long" }

      OR

      { "error" : "password can't contain any whitespace character" }

    OR

    • Code: 500 INTERNAL SERVER ERROR
      Content:
      { "error" : "internal server error" }

User Login

Login to user account to access CMS dashboard (if user already register)

  • URL

    /users/login

  • Method:

    POST

  • Request Headers

    key value required
    Content-Type application/x-www-form-urlencoded true
  • URL Params

    none

  • Data Params

    key value required
    email <YOUR_EMAIL> true
    password <YOUR_PASSWORD_HERE> true
  • Success Response:

    • Code: 200 OK
      Content:
      {
      "accessToken": "<YOUR_TOKEN_HERE>"
      }
  • Error Response:

    • Code: 500 INTERNAL SERVER ERROR
      Content:
      { "error" : "internal server error" }

    OR

    • Code: 401 UNAUTHORIZED
      Content:
      { "error" : "invalid email/password" }

Add New Product

Add new Product to system

  • URL

    /products

  • Method:

    POST

  • Request Headers

    key value required
    Content-Type application/x-www-form-urlencoded true
    access_token <YOUR_TOKEN_HERE> true
  • URL Params

    none

  • Data Params

    key value required
    name <YOUR_PRODUCT_NAME> true
    image_url <YOUR_IMAGE_URL> true
    price <YOUR_PRODUCT_PRICE> true
    stock <YOUR_PRODUCT_STOCK> true
    categoryId <YOUR_CATEGORY_ID> true
  • Success Response:

    • Code: 201 CREATED
      Content:
      {
          "product": {
              "id": 4,
              "name": "Dallas Cowboys Men's Blue Jersey",
              "image_url": "https://fanatics.frgimages.com/FFImage/thumb.aspx?i=/productimages/_2581000/altimages/ff_2581533alt1_full.jpg&w=900",
              "price": "1500000",
              "stock": 19,
              "UserId": 1,
              "CategoryId": 11,
              "updatedAt": "2020-05-16T05:34:35.358Z",
              "createdAt": "2020-05-16T05:34:35.358Z"
          }
      }
  • Error Response:

    • Code: 400 BAD REQUEST
      Content:

      { "error" : "Product name can't be empty" }

      OR

      { "error" : "Product already added to the system" }

      OR

      { "error" : "Product image already added to the system" }

      OR

      { "error" : "Product image can't be empty" }

      OR

      { "error" : "Invalid image url format" }

      OR

      { "error" : "Product price has to be greater than zero" }

      OR

      { "error" : "Product price can't be empty" }

      OR

      { "error" : "Product price must be a numeric value" }

      OR

      { "error" : "Product stock has to be greater than zero" }

      OR

      { "error" : "Product stock can't be empty" }

      OR

      { "error" : "Product stock must be an integer value" }

      OR

      { "error" : "Product Category can't be empty" }

    OR

    • Code: 401 UNAUTHORIZED
      Content:

      { "error" : "You do not have the authority to do this action" }

      OR

      { "error" : "you need to login to access this page" }

      OR

      { "error" : "Only admin has the authority to do this action" }

    OR

    • Code: 500 INTERNAL SERVER ERROR
      Content:
      { "error" : "internal server error" }

Show All Products

Show all Products, can be filter by category and product name. this end point is paginated API.

  • URL

    /products

  • Method:

    GET

  • Request Headers

    none

  • URL Params

query value required
per_page integer true
search string false
category string false
page integer true
sort string true
  • Data Params

    none

  • Success Response:

    • Code: 200 OK
      Content:
      {
          "products": {
              "total": 10,
              "per_page": 5,
              "current_page": 1,
              "last_page": 2,
              "from": 1,
              "to": 5,
              "data": [
                  {
                      "id": 8,
                      "name": "AS ROMA HOME VAPOR MATCH JERSEY 2019/20",
                      "image_url": "https://d29n1vi41wlgpp.cloudfront.net/media/catalog/product/cache/2/thumbnail/x640/040ec09b1e35df139433887a97daa66f/r/o/ro19004.jpg",
                      "price": "1000000",
                      "stock": 120,
                      "UserId": 1,
                      "CategoryId": 1,
                      "Category": {
                          "id": 1,
                          "name": "Football",
                          "total_product": 1
                      }
                  },
                  {
                      "id": 4,
                      "name": "Dallas Cowboys Men's Blue Jersey",
                      "image_url": "https://fanatics.frgimages.com/FFImage/thumb.aspx?i=/productimages/_2581000/altimages/ff_2581533alt1_full.jpg&w=900",
                      "price": "1500000",
                      "stock": 20,
                      "UserId": 1,
                      "CategoryId": 11,
                      "Category": {
                          "id": 11,
                          "name": "American Football",
                          "total_product": 2
                      }
                  },
                  {
                      "id": 12,
                      "name": "Giro Adult Verge Zoom Snow Goggles",
                      "image_url": "https://dks.scene7.com/is/image/GolfGalaxy/17GIRAVRGWHTZMSMRSSP_Black_Titanium_Zoom_Amber_Rose?qlt=70&wid=1100&fmt=webp",
                      "price": "460000",
                      "stock": 70,
                      "UserId": 1,
                      "CategoryId": 10,
                      "Category": {
                          "id": 10,
                          "name": "Winter Sports",
                          "total_product": 1
                      }
                  },
                  {
                      "id": 6,
                      "name": "Los Angeles Lakers 2008-09 Hardwood Classics Authentic Jersey - Purple",
                      "image_url": "https://fanatics.frgimages.com/FFImage/thumb.aspx?i=/productimages/_3419000/altimages/ff_3419566-045f0a3082941b1350bealt1_full.jpg&w=900",
                      "price": "4500000",
                      "stock": 10,
                      "UserId": 1,
                      "CategoryId": 2,
                      "Category": {
                          "id": 2,
                          "name": "Basketball",
                          "total_product": 3
                      }
                  },
                  {
                      "id": 5,
                      "name": "Men's Chicago Bulls  Black 1997-98 Hardwood Classics Swingman Jersey",
                      "image_url": "https://fanatics.frgimages.com/FFImage/thumb.aspx?i=/productimages/_2751000/altimages/ff_2751339alt1_full.jpg&w=900",
                      "price": "1800000",
                      "stock": 12,
                      "UserId": 1,
                      "CategoryId": 2,
                      "Category": {
                          "id": 2,
                          "name": "Basketball",
                          "total_product": 3
                      }
                  }
              ]
          }
      }
  • Error Response: Content:

    • Code: 401 UNAUTHORIZED
      Content:

      { "error" : "You do not have the authority to do this action" }

      OR

      { "error" : "you need to login to access this page" }

    OR

    • Code: 404 NOT FOUND
      Content:

      { "error" : "no product with id <id> found" }
    • Code: 500 INTERNAL SERVER ERROR
      Content:

      { "error" : "internal server error" }

Show Product by Id

Show product selected by Id.

  • URL

    /products/:id

  • Method:

    GET

  • Request Headers

    key value required
    Content-Type application/x-www-form-urlencoded true
    access_token <YOUR_TOKEN_HERE> true
  • URL Params

    Required:

    id=[integer]

  • Data Params

    none

  • Success Response:

    • Code: 200 OK
      Content:
      {
          "product": {
              "id": 2,
              "name": "Duke Football",
              "image_url": "https://fanatics.frgimages.com/FFImage/thumb.aspx?i=/productimages/_2768000/altimages/ff_2768013alt1_full.jpg&w=900",
              "price": "1800000",
              "stock": 0,
              "UserId": 1,
              "CategoryId": 3,
              "Category": {
                  "id": 3,
                  "name": "American Football",
                  "total_product": 1
              }
          }
      }
  • Error Response:

    • Code: 500 INTERNAL SERVER ERROR
      Content:
      { "error" : "internal server error" }

Update Product

Change existing product attribute

  • URL

    /products/:id

  • Method:

    PUT

  • Request Headers

    key value required
    Content-Type application/x-www-form-urlencoded true
    access_token <YOUR_TOKEN_HERE> true
  • URL Params

    Required:

    id=[integer]

  • Data Params

    none

  • Success Response:

    • Code: 200 OK
      Content:
      {
          "product": {
              "id": 4,
              "name": "Dallas Cowboys Men's Blue Jersey",
              "image_url": "https://fanatics.frgimages.com/FFImage/thumb.aspx?i=/productimages/_2581000/altimages/ff_2581533alt1_full.jpg&w=900",
              "price": "1500000",
              "stock": 22,
              "UserId": 1,
              "CategoryId": 11,
              "updatedAt": "2020-05-16T05:34:35.358Z",
              "createdAt": "2020-05-16T05:34:35.358Z"
          }
      }
  • Error Response:

    • Code: 400 BAD REQUEST
      Content:

      { "error" : "Product name can't be empty" }

      OR

      { "error" : "Product already added to the system" }

      OR

      { "error" : "Product image already added to the system" }

      OR

      { "error" : "Product image can't be empty" }

      OR

      { "error" : "Invalid image url format" }

      OR

      { "error" : "Product price has to be greater than zero" }

      OR

      { "error" : "Product price can't be empty" }

      OR

      { "error" : "Product price must be a numeric value" }

      OR

      { "error" : "Product stock has to be greater than zero" }

      OR

      { "error" : "Product stock can't be empty" }

      OR

      { "error" : "Product stock must be an integer value" }

      OR

      { "error" : "Product Category can't be empty" }

    OR

    • Code: 401 UNAUTHORIZED
      Content:

      { "error" : "You do not have the authority to do this action" }

      OR

      { "error" : "you need to login to access this page" }

      OR

      { "error" : "Only admin has the authority to do this action" }

    OR

    • Code: 404 NOT FOUND
      Content:
      { "error" : "no product with id <id> found" }

    OR

    • Code: 500 INTERNAL SERVER ERROR
      Content:
      { "error" : "internal server error" }

Delete Product

Delete existing product, selected by id

  • URL

    /products/:id

  • Method:

    DELETE

  • Request Headers

    key value required
    access_token <YOUR_TOKEN_HERE> true
  • URL Params

    Required:

    id=[integer]

  • Data Params

    none

  • Success Response:

    • Code: 200 OK
      Content:
      { "msg": "Success delete product with id 2" }
  • Error Response:

    • Code: 401 UNAUTHORIZED
      Content:

      { "error" : "You do not have the authority to do this action" }

      OR

      { "error" : "you need to login to access this page" }

      OR

      { "error" : "Only admin has the authority to do this action" }

    OR

    • Code: 404 NOT FOUND
      Content:
      { "error" : "no product with id <id> found" }

    OR

    • Code: 500 INTERNAL SERVER ERROR
      Content:
      { "error" : "internal server error" }

Create New Category

Create new Category for product

  • URL

    /categories

  • Method:

    POST

  • Request Headers

    key value required
    Content-Type application/x-www-form-urlencoded true
    access_token <YOUR_TOKEN_HERE> true
  • URL Params

    none

  • Data Params

    key value required
    name <YOUR_CATEGORY_NAME> true
  • Success Response:

    • Code: 200 OK
      Content:
      {
          "category": {
              "total_product": 0,
              "id": 13,
              "name": " Winter Sport",
              "updatedAt": "2020-05-16T06:42:42.878Z",
              "createdAt": "2020-05-16T06:42:42.878Z"
          }
      }
  • Error Response:

    • Code: 400 BAD REQUEST
      Content:

      { "error" : "category name can't be empty" }

      OR

      { "error" : "Category already created" }

    OR

    • Code: 401 UNAUTHORIZED
      Content:

      { "error" : "You dont have the authority to do this action" }

      OR

      { "error" : "you need to login to access this page" }

    OR

    • Code: 500 INTERNAL SERVER ERROR
      Content:
      { "error" : "internal server error" }

Show All Category

Show all existing product category

  • URL

    /categories

  • Method:

    GET

  • Request Headers

    none

  • URL Params

query value required
sort string true
  • Data Params

    none

  • Success Response:

    • Code: 200 OK
      Content:
      {
          "categories": [
              {
                  "id": 1,
                  "name": "Football",
                  "total_product": 1
              },
              {
                  "id": 2,
                  "name": "Basketball",
                  "total_product": 3
              },
              {
                  "id": 4,
                  "name": "Baseball",
                  "total_product": 0
              },
              {
                  "id": 5,
                  "name": "Ice Hockey",
                  "total_product": 2
              },
              {
                  "id": 6,
                  "name": "Cycling",
                  "total_product": 1
              },
              {
                  "id": 7,
                  "name": "Water Sports",
                  "total_product": 0
              },
              {
                  "id": 8,
                  "name": "Outdoor Sport",
                      "total_product": 0
              },
              {
                  "id": 9,
                  "name": "Martial Art",
                  "total_product": 0
              },
              {
                  "id": 10,
                  "name": "Winter Sports",
                  "total_product": 1
              },
              {
                  "id": 11,
                  "name": "American Football",
                  "total_product": 3
              }
          ]
      } 
  • Error Response:

    • Code: 500 INTERNAL SERVER ERROR
      Content:
      { "error" : "internal server error" }

Update New Category

Update Category name

  • URL

    /categories/:id

  • Method:

    PUT

  • Request Headers

    key value required
    Content-Type application/x-www-form-urlencoded true
    access_token <YOUR_TOKEN_HERE> true
  • URL Params

    Required:

    id=[integer]

  • Data Params

    key value required
    name <YOUR_CATEGORY_NAME> true
  • Success Response:

    • Code: 200 OK
      Content:
      {
          "category": {
              "total_product": 0,
              "id": 13,
              "name": " Winter Sports",
              "updatedAt": "2020-05-16T06:42:42.878Z",
              "createdAt": "2020-05-16T06:42:42.878Z"
          }
      }
  • Error Response:

    • Code: 400 BAD REQUEST
      Content:

      { "error" : "category name can't be empty" }

      OR

      { "error" : "Category already created" }

    OR

    • Code: 401 UNAUTHORIZED
      Content:

      { "error" : "You dont have the authority to do this action" }

      OR

      { "error" : "you need to login to access this page" }

    OR

    • Code: 500 INTERNAL SERVER ERROR
      Content:
      { "error" : "internal server error" }

Delete Category

Delete existing category, selected by id

  • URL

    /categories/:id

  • Method:

    DELETE

  • Request Headers

    key value required
    access_token <YOUR_TOKEN_HERE> true
  • URL Params

    Required:

    id=[integer]

  • Data Params

    none

  • Success Response:

    • Code: 200 OK
      Content:
      { "msg": "Success delete category with id 2" }
  • Error Response:

    • Code: 401 UNAUTHORIZED
      Content:

      { "error" : "You do not have the authority to do this action" }

      OR

      { "error" : "you need to login to access this page" }

      OR

      { "error" : "Only admin has the authority to do this action" }

    OR

    • Code: 500 INTERNAL SERVER ERROR
      Content:
      { "error" : "internal server error" }

Customer Register

New customer registration in ecommerce app

  • URL

    /customers/register

  • Method:

    POST

  • Request Headers

    key value required
    Content-Type application/x-www-form-urlencoded true
  • URL Params

    none

  • Data Params

    key value required
    name <YOUR_NAME> true
    email <YOUR_EMAIL> true
    password <YOUR_PASSWORD_HERE> true
  • Success Response:

    • Code: 201 CREATED
      Content:
      {
      "id": 1,
      "name": "Huey McMeow",
      "email": "[email protected]"
      }
  • Error Response:

    • Code: 400 BAD REQUEST
      Content:

      { "error" : "name can't be empty" }

      OR

      { "error" : "email already exists" }

      OR

      { "error" : "email can't be empty" }

      OR

      { "error" : "invalid email format" }

      OR

      { "error" : "password can't be empty" }

      OR

      { "error" : "password must be at least 8 character long" }

      OR

      { "error" : "password can't contain any whitespace character" }

    OR

    • Code: 500 INTERNAL SERVER ERROR
      Content:
      { "error" : "internal server error" }

Customer Login

Login to customer account to access start shopping in ecommerce app

  • URL

    /customers/login

  • Method:

    POST

  • Request Headers

    key value required
    Content-Type application/x-www-form-urlencoded true
  • URL Params

    none

  • Data Params

    key value required
    email <YOUR_EMAIL> true
    password <YOUR_PASSWORD_HERE> true
  • Success Response:

    • Code: 200 OK
      Content:
      {
      "accessToken": "<YOUR_TOKEN_HERE>"
      }
  • Error Response:

    • Code: 500 INTERNAL SERVER ERROR
      Content:
      { "error" : "internal server error" }

    OR

    • Code: 401 UNAUTHORIZED
      Content:
      { "error" : "invalid email/password" }

Add New Product To Cart

Add new Product to customer shopping cart

  • URL

    /carts

  • Method:

    POST

  • Request Headers

    key value required
    Content-Type application/x-www-form-urlencoded true
    access_token <YOUR_TOKEN_HERE> true
  • URL Params

    none

  • Data Params

    key value required
    CartId <YOUR_CART_ID> true
    ProductId <YOUR_PRODUCT_ID> true
    quantity <YOUR_PRODUCT_QUANTITY> true
  • Success Response:

    • Code: 201 CREATED
      Content:
      {
          "product": {
              "id": 1,
              "name": "GT Men's Aggressor Pro Mountain Bike",
              "image_url": "https://dks.scene7.com/is/image/GolfGalaxy/17GTXMGGRSSRPRXXXPRF_Electric_Blue?qlt=70&wid=1100&fmt=webp",
              "price": "5700000",
              "stock": 25,
              "UserId": 1,
              "CategoryId": 6,
              "updatedAt": "2020-06-03T23:34:38.725Z",
              "createdAt": "2020-06-03T23:34:38.725Z"
          }
      }
  • Error Response:

    • Code: 400 BAD REQUEST
      Content:

      { "error" : "Product quantity can't be empty" }

      OR

      { "error" : "Product quantity must be an integer value" }

      OR

      { "error" : "Product quantity can't be lest than 1" }

      OR

      { "error" : "Product id can't be empty" }

      OR

      { "error" : "Product already added to your cart" }

      OR

      { "error" : "only <stock> <product> is available on the stock" }

      OR

      { "error" : "<product> is out of stock" }

    OR

    • Code: 401 UNAUTHORIZED
      Content:

      { "error" : "You dont have the authority to do this action" }

      OR

      { "error" : "you have to login to access this page" }

    OR

    • Code: 500 INTERNAL SERVER ERROR
      Content:
      { "error" : "internal server error" }

Show Cart

Show all Product that have been add to cart

  • URL

    /carts

  • Method:

    GET

  • Request Headers

    key value required
    Content-Type application/x-www-form-urlencoded true
    access_token <YOUR_TOKEN_HERE> true
  • URL Params

none

  • Data Params

    none

  • Success Response:

    • Code: 200 OK
      Content:
      {
          "cart": {
              "totalPrice": "5700000",
              "products": [
                  {
                      "quantity": 1,
                      "price": "5700000",
                      "ProductId": 1,
                      "CartId": 1,
                      "paidStatus": false,
                      "Product": {
                          "id": 1,
                          "name": "GT Men's Aggressor Pro Mountain Bike",
                          "image_url": "https://dks.scene7.com/is/image/GolfGalaxy/17GTXMGGRSSRPRXXXPRF_Electric_Blue?qlt=70&wid=1100&fmt=webp",
                          "price": "5700000",
                          "stock": 21,
                          "UserId": 1,
                          "CategoryId": 6
                      }
                  }
              ]
          }
      }
  • Error Response:

    • Code: 401 UNAUTHORIZED
      Content:

      { "error" : "You dont have the authority to do this action" }

      OR

      { "error" : "you have to login to access this page" }

    OR

    • Code: 500 INTERNAL SERVER ERROR
      Content:
      { "error" : "internal server error" }

Show Transaction History

Show list of purchased products

  • URL

    /carts/history

  • Method:

    GET

  • Request Headers

    key value required
    Content-Type application/x-www-form-urlencoded true
    access_token <YOUR_TOKEN_HERE> true
  • URL Params

none

  • Data Params

    none

  • Success Response:

    • Code: 200 OK
      Content:
      {
          "products": [
              {
                  "quantity": 2,
                  "price": "11400000",
                  "ProductId": 1,
                  "CartId": 1,
                  "paidStatus": true,
                  "updatedAt": "2020-06-03T23:44:37.748Z",
                  "Product": {
                      "id": 1,
                      "name": "GT Men's Aggressor Pro Mountain Bike",
                      "image_url": "https://dks.scene7.com/is/image/GolfGalaxy/17GTXMGGRSSRPRXXXPRF_Electric_Blue?qlt=70&wid=1100&fmt=webp",
                      "price": "5700000",
                      "stock": 23,
                      "UserId": 1,
                      "CategoryId": 6
                  }
              },
              {
                  "quantity": 1,
                  "price": "1800000",
                  "ProductId": 2,
                  "CartId": 1,
                  "paidStatus": true,
                  "updatedAt": "2020-06-03T23:44:37.748Z",
                  "Product": {
                      "id": 2,
                      "name": "Duke Football",
                      "image_url": "https://fanatics.frgimages.com/FFImage/thumb.aspx?i=/productimages/_2768000/altimages/ff_2768013alt1_full.jpg&w=900",
                      "price": "1800000",
                      "stock": 0,
                      "UserId": 1,
                      "CategoryId": 3
                  }
              }
          ]
      }
  • Error Response:

    • Code: 401 UNAUTHORIZED
      Content:

      { "error" : "You dont have the authority to do this action" }

      OR

      { "error" : "you have to login to access this page" }

    OR

    • Code: 500 INTERNAL SERVER ERROR
      Content:
      { "error" : "internal server error" }

Change Product Order Quantity

Change product order quantity in shopping cart

  • URL

    /carts/:id

  • Method:

    PATCH

  • Request Headers

    key value required
    Content-Type application/x-www-form-urlencoded true
    access_token <YOUR_TOKEN_HERE> true
  • URL Params

    Required:

    id=[integer]

  • Data Params

    key value required
    quantity <YOUR_PRODUCT_QUANTITY> true
  • Success Response:

    • Code: 200 OK
      Content:
      {
          "cartProduct": [
              {
                  "id": 1,
                  "quantity": 2,
                  "price": "11400000",
                  "paidStatus": false,
                  "createdAt": "2020-06-04T00:00:08.526Z",
                  "updatedAt": "2020-06-04T00:00:40.746Z",
                  "ProductId": 1,
                  "CartId": 1
              }
          ]
      }
  • Error Response:

    • Code: 400 BAD REQUEST
      Content:

      { "error" : "Product quantity can't be empty" }

      OR

      { "error" : "Product quantity must be an integer value" }

      OR

      { "error" : "Product quantity can't be lest than 1" }

      OR

      { "error" : "Product id can't be empty" }

      OR

      { "error" : "Product already added to your cart" }

      OR

      { "error" : "only <stock> <product> is available on the stock" }

      OR

      { "error" : "<product> is out of stock" }

    OR

    • Code: 401 UNAUTHORIZED
      Content:

      { "error" : "You dont have the authority to do this action" }

      OR

      { "error" : "you have to login to access this page" }

    OR

    • Code: 404 NOT FOUND
      Content:
      { "error" : "no product with id <id> found" }

    OR

    • Code: 500 INTERNAL SERVER ERROR
      Content:
      { "error" : "internal server error" }

Checkout

Proceed Checkout for product in shopping cart

  • URL

    /carts/checkout

  • Method:

    PATCH

  • Request Headers

    key value required
    Content-Type application/x-www-form-urlencoded true
    access_token <YOUR_TOKEN_HERE> true
  • URL Params

    none

  • Data Params

    key value required
    quantity <YOUR_PRODUCT_QUANTITY> true
  • Success Response:

    • Code: 200 OK
      Content:
      {
          "msg": "Checkout Success"
      }
  • Error Response:

    • Code: 400 BAD REQUEST
      Content:

      { "error" : "only <stock> <product> is available on the stock" }

      OR

      { "error" : "<product> is out of stock" }

    OR

    • Code: 401 UNAUTHORIZED
      Content:

      { "error" : "You dont have the authority to do this action" }

      OR

      { "error" : "you have to login to access this page" }

    OR

    • Code: 500 INTERNAL SERVER ERROR
      Content:
      { "error" : "internal server error" }

Remove from Cart

Remove product from shopping cart

  • URL

    /carts/:id

  • Method:

    DELETE

  • Request Headers

    key value required
    access_token <YOUR_TOKEN_HERE> true
  • URL Params

    Required:

    id=[integer]

  • Data Params

    none

  • Success Response:

    • Code: 200 OK
      Content:
      { "msg": "Success remove product with id <id> from your cart" }
  • Error Response:

    • Code: 401 UNAUTHORIZED
      Content:

      { "error" : "You dont have the authority to do this action" }

      OR

      { "error" : "you have to login to access this page" }

    OR

    • Code: 404 NOT FOUND
      Content:
      { "error" : "no product with id <id> found" }

    OR

    • Code: 500 INTERNAL SERVER ERROR
      Content:
      { "error" : "internal server error" }

cms_server's People

Contributors

aadielpr avatar goberman15 avatar

Watchers

 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.