Skip to main content

Retrieves detailed information about a specific product by their ID.

GET 

/api/company/:company_id/product/:product_id

Retrieves detailed information about a specific product by their ID.

Request

Path Parameters

    company_id stringrequired
    product_id stringrequired

Responses

Detailed information about the product

Schema
    id uuidrequired

    The unique identifier of the product.

    name stringrequired

    The name of the product.

    company_id uuidrequired

    The unique identifier of the company.

    description stringrequired

    The description of the product. Can be null.

    images object[]required

    An array of image URLs associated with the product.

  • Array [
  • id uuidrequired

    The unique identifier of the product image.

    company_id uuidrequired

    The unique identifier of the company.

    url urlrequired

    The URL of the product image.

  • ]
Loading...