Create Pricelist

Creates a price list.

post
Body
currencystringOptional
precisioninteger · int32Required
defaultMarkupnumber · double | nullableOptional
notesstring | nullableOptional
externalIdsall ofOptional
productall ofRequired
Responses
201

Created

application/json
post
POST /public/v1/catalog/price-lists HTTP/1.1
Host: api.s1.today
Content-Type: application/json
Accept: */*
Content-Length: 122

{
  "currency": "text",
  "precision": 1,
  "defaultMarkup": 1,
  "notes": "text",
  "externalIds": {
    "vendor": "text"
  },
  "product": {
    "id": "text"
  }
}
{
  "id": "text",
  "audit": {
    "created": {
      "at": "2025-08-12T22:19:11.632Z",
      "by": "[Circular Reference]"
    },
    "updated": {
      "at": "2025-08-12T22:19:11.632Z",
      "by": "[Circular Reference]"
    }
  },
  "$meta": {
    "omitted": [
      "text"
    ]
  },
  "currency": "text",
  "precision": 1,
  "defaultMarkup": 1,
  "notes": "text",
  "externalIds": {
    "vendor": "text"
  },
  "statistics": {
    "sellers": 1,
    "listings": 1,
    "priceListItems": 1,
    "purchasePriceItems": 1,
    "purchasePriceCompleteness": 1,
    "salesPriceItems": 1,
    "salesPriceCompleteness": 1,
    "averageMarkup": 1,
    "averageMargin": 1
  },
  "product": {
    "id": "text",
    "name": "text",
    "externalIds": {
      "operations": "text",
      "defaultErpItem": "text"
    },
    "icon": "text",
    "status": "text"
  },
  "vendor": {
    "id": "text",
    "icon": "text",
    "type": "Client",
    "status": "Active",
    "name": "text"
  }
}

Last updated

Was this helpful?