/
Table Description (MyProducts)

Table Description (MyProducts)

Table Name: MyProducts

Table Description:

Fields

Type

Description

Fields

Type

Description

Id

Primary Key

Integer

Stores the product Id (unique for every product)

ProductName

String

Stores the name of the product

ProductType

String

Stores the type of product (Casual, Formal etc.)

Price

Long

Stores the price of product

Request Format: JSON

For performing Insert, Update and Delete operations, the Request must be given in JSON format.

{    "Id": "1"    "ProductName": "Shirt",    "ProductType": "Formal",    "Price": "700" }

 

Related content