Product
Add an Item
POST
/
v1
/
product
curl --request POST \
--url https://app.getswipe.in/api/partner/v1/product \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"id": "ITEM123",
"name": "Item Name",
"quantity": 1,
"unit_price": 100,
"tax_rate": 18,
"price_with_tax": 118,
"discount_percent": 10,
"description": "Item Description",
"hsn_code": "1234",
"item_type": "Product",
"unit": "kg",
"category": "Electronics",
"status": "Active"
}'
{
"success": true,
"message": "Product added successfully"
}
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Response
201
application/json
Success
The response is of type object
.
curl --request POST \
--url https://app.getswipe.in/api/partner/v1/product \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"id": "ITEM123",
"name": "Item Name",
"quantity": 1,
"unit_price": 100,
"tax_rate": 18,
"price_with_tax": 118,
"discount_percent": 10,
"description": "Item Description",
"hsn_code": "1234",
"item_type": "Product",
"unit": "kg",
"category": "Electronics",
"status": "Active"
}'
{
"success": true,
"message": "Product added successfully"
}
Assistant
Responses are generated using AI and may contain mistakes.