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

Region

Overview

The region resource represents geographic regions in the B2B pricing application. This resource stores regional information used for pricing and cost calculations.

Resource Endpoint

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

Supported Methods

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

Request Headers

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

Properties

Primary Keys

  • region_id (string) - Unique identifier for the region
  • updated_at (datetime) - Timestamp of when the record was last updated

Attributes

AttributeData TypeRequiredDescription
region_idstringYesA unique identifier for each region. This is the primary key of the table.
updated_atdatetimeYesTimestamp when the record was updated.
region_namestringNoThe name of the region, describing the geographical area. Used for display purposes and to facilitate easier identification of regions by users.

Relationships

Outbound References

This resource has relationships to:

  • competitor_price - Regions can have competitive pricing data
  • list_price - Regions can have list prices for products
  • product_cost - Regions can have product cost information
  • quote_line - Regions can be associated with quote lines

Inbound References

None

JSON Representation

{
  "solutionName": "QP_OOTB",
  "data": [
    {
      "region_id": "EMEA-UK",
      "updated_at": "2025-01-28T10:00:00Z",
      "region_name": "United Kingdom"
    }
  ],
  "operationType": "UPSERT"
}
{
  "solutionName": "QP_OOTB",
  "data": [
    {
      "region_id": "EMEA-UK",
      "updated_at": "2025-01-28T10:00:00Z",
      "region_name": "United Kingdom"
    }
  ],
  "operationType": "UPSERT"
}

Example Request

curl -X POST \
  'https://service.peak.ai/ingestion-api/api/v2/ingest/object/QP_REGION_OOTB' \
  -H 'Authorization: YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "solutionName": "QP_OOTB",
    "data": [
      {
        "region_id": "EMEA-UK",
        "updated_at": "2025-01-28T10:00:00Z",
        "region_name": "United Kingdom"
      }
    ],
    "operationType": "UPSERT"
  }'
curl -X POST \
  'https://service.peak.ai/ingestion-api/api/v2/ingest/object/QP_REGION_OOTB' \
  -H 'Authorization: YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "solutionName": "QP_OOTB",
    "data": [
      {
        "region_id": "EMEA-UK",
        "updated_at": "2025-01-28T10:00:00Z",
        "region_name": "United Kingdom"
      }
    ],
    "operationType": "UPSERT"
  }'

Important Notes

  • Geographic Scope: Regions define the geographic boundaries for pricing and cost calculations
  • Custom Attributes: Additional custom attributes can be added using the /REGION/add-attribute endpoint
  • Data Validation: All attributes are validated according to their defined data types

Was this page helpful?

Connect

Need help? Support

Want to learn? UiPath Academy

Have questions? UiPath Forum

Stay updated