3. API get product
List of products or details of a product via code on Ant CRM
URL: /products
Method: GET
Content-Type: application/json
Parameters
Type
Required
Explain
code
string
product code
type
string
Product type. If it is a combo, then the type is passed as combo, and for individual products, the type is product. If not passed, all will be taken.
page
number
Page number, maximum 20 products per page
limit
number
Number of records per page
Results returned: HTTP Response Code: 200
Response:
[{ value: "",
name: "test", code: “3609”, productIdApiRing: “”,
_id: “” }]
Add products URL: /products
Method: POST
Content-Type: application/json
Parameters
Type
Required
Explain
name
string
AND
Product's name
code
string
AND
Product code on CRM
productIdApiRing
string
AND
Product code
value
string
Amount of money
canEdit
Boolean
Can the product price be updated when placing an order?
Results returned:
HTTP Response Code: 200
Response:
{
"success": 1,
"code”: 9457 (product code on antcrm) }
Repair products
URL: /products
Method: PUT
Content-Type: application/json
Parameters
Type
Required
Explain
name
string
Product's name
code
string
Product code on CRM
productIdApiRing
string
AND
Product code
value
string
Amount of money
canEdit
Boolean
Can the product price be updated when placing an order?
Results returned:
HTTP Response Code: 200
Response:
{
"success": 1,
"code”: 9457 (product code on antcrm) }
Delete product
URL: /products
Method: DELETE
Content-Type: application/json
Parameters
Type
Required
Explain
productIdApiRing
string
AND
Results returned:
HTTP Response Code: 200
Response:
{
"success": 1
}
Last updated