UiPath Documentation
industry-department-solutions
latest
false
  • Overview
    • Introduction
    • Getting Started
    • API Guide
    • Customizations
    • Data Onboarding Checklist
  • API Resources
UiPath logo, featuring letters U and I in white

Supply Chain & Retail Solutions API guide

Last updated Apr 16, 2026

Product Pricing Daily

Overview

The product_pricing_daily resource represents daily pricing snapshots for products at specific locations. This resource stores time-series pricing data including selling prices, costs, and list prices.

Resource Endpoint

/api/v2/ingest/object/{prefix}PRODUCT_PRICING_DAILY{suffix}
/api/v2/ingest/object/{prefix}PRODUCT_PRICING_DAILY{suffix}

Supported Methods

MethodReturn TypeDescription
POSTResponseIngest (create/update) daily pricing records via UPSERT operation

Request Headers

HeaderRequiredDescription
AuthorizationYesYour Personal Access Token (PAT) from platform.peak.ai
Content-TypeYesMust be application/json

Properties

Primary Keys

  • location_id (string) - Foreign key reference to locations
  • pricing_at (datetime) - Timestamp for the pricing snapshot
  • product_id (string) - Foreign key reference to products

Attributes

AttributeData TypeRequiredDescription
location_idstringYesLocation identifier (Primary Key, Foreign Key)
pricing_atdatetimeYesPricing snapshot timestamp (Primary Key)
product_idstringYesProduct identifier (Primary Key, Foreign Key)
selling_pricefloatNoCurrent selling price
unit_cost_pricefloatNoCost per unit
unit_list_pricefloatNoList price per unit
quote_stagestringNoPricing stage or lifecycle status
created_atdatetimeNoTimestamp when the record was created
updated_atdatetimeNoTimestamp when the record was last updated

Relationships

Outbound References

None

Inbound References

  • product - Foreign key product_id references product
  • location - Foreign key location_id references location

JSON Representation

{
  "solutionName": "QP_OOTB",
  "data": [
    {
      "location_id": "LOC-UK-001",
      "pricing_at": "2025-01-28T00:00:00Z",
      "product_id": "PROD-001",
      "selling_price": 199.99,
      "unit_cost_price": 120.00,
      "unit_list_price": 249.99,
      "quote_stage": "active",
      "created_at": "2025-01-28T01:00:00Z",
      "updated_at": "2025-01-28T10:00:00Z"
    }
  ],
  "operationType": "UPSERT"
}
{
  "solutionName": "QP_OOTB",
  "data": [
    {
      "location_id": "LOC-UK-001",
      "pricing_at": "2025-01-28T00:00:00Z",
      "product_id": "PROD-001",
      "selling_price": 199.99,
      "unit_cost_price": 120.00,
      "unit_list_price": 249.99,
      "quote_stage": "active",
      "created_at": "2025-01-28T01:00:00Z",
      "updated_at": "2025-01-28T10:00:00Z"
    }
  ],
  "operationType": "UPSERT"
}

Example Request

curl -X POST \
  'https://service.peak.ai/ingestion-api/api/v2/ingest/object/QP_PRODUCT_PRICING_DAILY_OOTB' \
  -H 'Authorization: YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "solutionName": "QP_OOTB",
    "data": [
      {
        "location_id": "LOC-UK-001",
        "pricing_at": "2025-01-28T00:00:00Z",
        "product_id": "PROD-001",
        "selling_price": 199.99,
        "unit_cost_price": 120.00,
        "unit_list_price": 249.99,
        "quote_stage": "active",
        "created_at": "2025-01-28T01:00:00Z",
        "updated_at": "2025-01-28T10:00:00Z"
      }
    ],
    "operationType": "UPSERT"
  }'
curl -X POST \
  'https://service.peak.ai/ingestion-api/api/v2/ingest/object/QP_PRODUCT_PRICING_DAILY_OOTB' \
  -H 'Authorization: YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "solutionName": "QP_OOTB",
    "data": [
      {
        "location_id": "LOC-UK-001",
        "pricing_at": "2025-01-28T00:00:00Z",
        "product_id": "PROD-001",
        "selling_price": 199.99,
        "unit_cost_price": 120.00,
        "unit_list_price": 249.99,
        "quote_stage": "active",
        "created_at": "2025-01-28T01:00:00Z",
        "updated_at": "2025-01-28T10:00:00Z"
      }
    ],
    "operationType": "UPSERT"
  }'

Important Notes

  • Foreign Key Dependencies: Requires valid product_id and location_id to exist in their respective tables
  • Time-Series Data: Captures daily pricing snapshots for trend analysis
  • Multi-Price Tracking: Stores selling price, cost, and list price for margin analysis
  • Location-Specific: Prices can vary by location
  • Custom Attributes: Additional custom attributes can be added using the /PRODUCT_PRICING_DAILY/add-attribute endpoint
  • Data Validation: All attributes are validated according to their defined data types
  • product - Product information
  • location - Location details
  • sale - Actual sales at these prices

Was this page helpful?

Connect

Need help? Support

Want to learn? UiPath Academy

Have questions? UiPath Forum

Stay updated