Shipsidekick LogoShipsidekick Docs

Get product by ID

Retrieve a specific product by its unique identifier. Results are filtered to products the authenticated user has access to.

GET
/products/{productId}

Path Parameters

productIdRequiredstring

Unique identifier of the product

Format: "uuid"
curl -X GET "https://www.shipsidekick.com/api/v1/products/12345678-90ab-cdef-1234-567890abcdef"

Successful operation

{
  "object": "product",
  "data": {
    "$ref": "#/components/examples/ProductExample/value",
    "id": "12345678-90ab-cdef-1234-567890abcdef",
    "organizationId": "org-1234-5678-abcd-efgh",
    "createdAt": "2023-09-15T14:30:00Z",
    "updatedAt": "2023-09-15T14:30:00Z"
  }
}