Skip to main content
PUT
/
product
/
{product_number}
/
{language_code}
Create or update product
curl --request PUT \
  --url https://start.aiotic.ai/product/{product_number}/{language_code} \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "description": "<string>",
  "remark": "<string>"
}
'
{
  "item_number": "<string>",
  "language_code": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "description": "<string>",
  "remark": "<string>"
}

Authorizations

X-API-Key
string
header
required

API key for authentication. Required on all endpoints except /healthcheck. Customer and product endpoints also accept a customer-specific API key.

Path Parameters

product_number
string
required

Product item number

language_code
string
required

Product language code (e.g., "en", "nl")

Body

application/json
description
string
required

Product description

remark
string | null

Additional remarks about the product

Response

Product created or updated

item_number
string
required

Unique product identifier

language_code
string
required

Language code for the product description (e.g., "en", "nl")

created_at
string<date-time>
required

When this product was created in the database

description
string | null

Product description

remark
string | null

Additional remarks about the product