Commercial APIs
  1. Noon Pricing
Commercial APIs
  • Authentication
    • Documentation
    • Authentication Credentials
    • Login API
      POST
  • Namshi
    • Order Webhook
    • Return Picked Up Webhook
    • Update Price API
      POST
    • Update Country Visibility API
      POST
    • Get Price and Country Visibility API
      GET
    • List Orders
      POST
  • Stock
    • Stock Update API
      POST
  • Noon Pricing
    • Core Partner Sku Info
      POST
    • Core Partner Sku Update
      POST
  • Xborder Pricing
    • create or update product pricing
      POST
    • deactivate existing product pricing
      POST
  1. Noon Pricing

Core Partner Sku Update

POST
https://mp-pricing-api.noon.partners/_integ/partner-integration/upsert
Set price, is_active flag, and msrp (if any) for noon core

Request

Body Params application/json

Example
{
    "partner_skus": [
        {
            "partner_sku": "string",
            "country_code": "string",
            "msrp": 0,
            "price": 0,
            "is_active": true
        }
    ]
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://mp-pricing-api.noon.partners/_integ/partner-integration/upsert' \
--header 'Content-Type: application/json' \
--data-raw '{
    "partner_skus": [
        {
            "partner_sku": "string",
            "country_code": "string",
            "msrp": 0,
            "price": 0,
            "is_active": true
        }
    ]
}'

Responses

🟢200Success
application/json
Body

Example
{
    "invalid_rows": [
        {
            "partner_sku": "string",
            "country_code": "string",
            "error": "string"
        }
    ]
}
Modified at 2025-07-23 14:14:44
Previous
Core Partner Sku Info
Next
create or update product pricing
Built with