Get single product

Get Cakes

POST {{base-url}} clients/singleProduct

This endpoint allows you to get free cakes.

Headers

Name
Type
Description

x-api-access

string

x-api-secret

string

x-client-token

string

Content-Type

string

Request Body

Name
Type
Description

terminal_uuid

string

client_id

integer

product_id

integer

Request:-

{
	  "terminal_uuid": "fb0974bd-7d94-4b94-a8cd-a7b5a78eaac4",
    "client_id": 306,
    "product_id": 2463
}

Response:-
{
    "success": true,
    "msg": "Getting single product by ID successfully.",
    "data": {
        "product_id": "2463",
        "name": "fruti",
        "price": 54,
        "barcode_number": "djdf",
        "category": "Nike",
        "quantity": 106,
        "product_cost": "78",
        "custom_field": {
            "image": [
                "https://elasticbeanstalk-ap-south-1-579535670794.s3.ap-south-1.amazonaws.com/Billeasy/pos_products/Book_800+px.png"
            ]
        },
        "description": "kiran satpute",
        "sell_by": "unit"
    }
}

Last updated