UiPath Documentation
industry-department-solutions
latest
false
Supply Chain & Retail Solutions user guide

List price dataset

List price dataset containing baseline product list pricing for manufacturing pricing scenarios, required for application deployment and pricing insights.

The List Price dataset contains product list pricing information used in manufacturing pricing scenarios. It defines baseline selling prices that apply at specific stages in the quoting or pricing process.

This dataset is required for application deployment and pricing insights analysis.

→ For the canonical technical schema (data types, validation rules, request/response examples), see List Price in the API Guide.

Purpose

The commercial pricing solution uses the List Price dataset to:

  • Establish baseline prices for products
  • Compare quoted prices against list prices
  • Evaluate pricing adjustments and guardrails
  • Analyze pricing performance relative to standard pricing policies

List price data provides the reference point for pricing recommendations and margin analysis.

Required fields

About the Nullable column: every field below must appear in your data. Nullable: Yes means the field can be sent as null (or left blank in your source) when no value is available; Nullable: No means a non-null value is required for every row.

FieldDescriptionTypeNullable
product_idUnique identifier for each product. Used to join product metadata to quotations and sales for model training and guardrails.stringNo
region_idRegion identifier (Primary Key, Foreign Key)stringNo
price_list_idPrice list identifier (Primary Key)stringNo
updated_atTimestamp when the record was updated. Used to identify the most up-to-date data in the UI and when optimising prices. For model training, used to match the list price to the date of each quote.timestamp_tzYes
list_priceList price for the product. Used to calculate the discount applied to all quotations and sales orders for model training and optimising prices.floatYes

Custom fields

The fields listed previously are the standard schema for this dataset. A field that your business requires but the standard schema does not include can be added as a custom attribute after the schema is rolled out. Custom attributes are additive, so they extend the dataset without affecting existing fields, and they are validated in the same way as standard fields.

The following request adds an APPROVAL_STATUS column to this dataset:

curl -X POST \
  'https://ingestion.peak.ai/api/v2/schema/QP_LIST_PRICE_OOTB/add-attribute' \
  -H 'Authorization: YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "solutionName": "QP_OOTB",
    "columnName": "APPROVAL_STATUS",
    "dataType": "string",
    "validations": [
      { "type": "optional" }
    ]
  }'
curl -X POST \
  'https://ingestion.peak.ai/api/v2/schema/QP_LIST_PRICE_OOTB/add-attribute' \
  -H 'Authorization: YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "solutionName": "QP_OOTB",
    "columnName": "APPROVAL_STATUS",
    "dataType": "string",
    "validations": [
      { "type": "optional" }
    ]
  }'

The table name in the request URL is this dataset's fully qualified warehouse name, which includes the prefix and suffix configured when your solution was rolled out — QP_LIST_PRICE_OOTB in this example. Retrieve the name for your own solution with Describe a solution's schema.

On standard tables the API prefixes the new column name in the warehouse with C_ (Snowflake) or c_ (Redshift), so APPROVAL_STATUS becomes C_APPROVAL_STATUS and warehouse queries must use the prefixed name.

→ For the full parameter reference, supported data types, and validation rules, see Customizations in the API Guide.

Usage notes

  • List prices should reflect the official baseline prices used in the quoting process.
  • All referenced identifiers (product_id, region_id, price_list_id) must exist in their corresponding datasets.
  • Use the price_list_id to distinguish list prices that apply in different pricing contexts (such as regional or customer-tier price lists).
  • Successive versions of a list price are appended with new updated_at values, so historical pricing analysis stays accurate over time.
  • Historical list prices improve pricing analysis and performance tracking.

Why this dataset matters

The List Price dataset establishes the baseline pricing structure for manufacturing pricing. Without it, the solution cannot compare quoted prices against standard pricing policies or evaluate deviations from list price.

  • Purpose
  • Required fields
  • Custom fields
  • Usage notes
  • Why this dataset matters

Was this page helpful?

Connect

Need help? Support

Want to learn? UiPath Academy

Have questions? UiPath Forum

Stay updated