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 Info

POST
https://mp-pricing-api.noon.partners/_integ/partner-integration/info
Get msrp, price and is_active flag for partner SKUs from noon core
Note: Price sent here should be inclusive of VAT

Request

Body Params application/json

Example
{
    "partner_skus": [
        {
            "partner_sku": "string",
            "country_code": "ae"
        }
    ]
}

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/info' \
--header 'Content-Type: application/json' \
--data-raw '{
    "partner_skus": [
        {
            "partner_sku": "string",
            "country_code": "ae"
        }
    ]
}'

Responses

🟢200Success
application/json
Body

Example
[
    {
        "partner_sku": "string",
        "country_code": "string",
        "msrp": 0,
        "price": 0,
        "is_active": true
    }
]
Modified at 2025-07-23 14:13:18
Previous
Stock Update API
Next
Core Partner Sku Update
Built with