Skip to main content
POST
/
v3
/
customProducts
Add Custom Product
curl --request POST \
  --url http://localhost/api/v3/customProducts \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "barcode": "<string>",
  "sku": "<string>",
  "url": "<string>",
  "price": 123,
  "currency": "<string>",
  "image_url": "<string>",
  "product_id": 123
}
'
{
  "data": {
    "id": 123,
    "name": "<string>",
    "description": "<string>",
    "barcode": "<string>",
    "sku": "<string>",
    "url": "<string>",
    "price": "<string>",
    "currency": "<string>",
    "image_url": "<string>",
    "product_id": "<string>",
    "created_at": "<string>",
    "updated_at": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.omneo.io/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
name
string
required
description
string | null
barcode
string | null
sku
string | null
url
string | null
price
number | null
currency
string | null
image_url
string | null
product_id
integer

Response

CustomProduct

data
CustomProduct · object
required