Commercial APIs
  1. Namshi
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. Namshi

Update Price API

POST
https://nm-mp-api-seller.noon.partners/_integ/update-price
Update price for a given combination of partner_sku and country
Note: Price sent here should inclusive of VAT

Request

Body Params application/json

Example
[
    {
        "partner_sku": "string",
        "country_code": "ae",
        "price": 0,
        "sale_price": 0,
        "msrp": 0
    }
]

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://nm-mp-api-seller.noon.partners/_integ/update-price' \
--header 'Content-Type: application/json' \
--data-raw '[
    {
        "partner_sku": "string",
        "country_code": "ae",
        "price": 0,
        "sale_price": 0,
        "msrp": 0
    }
]'

Responses

🟢200Success
application/json
Headers

Body

Example
{
    "updated_partner_skus": [
        "partner_sku1_ae"
    ],
    "errors": {
        "XYZ789_ae": "Error message",
        "DEF456_sa": "Error message"
    }
}
Modified at 2025-06-18 09:30:07
Previous
Return Picked Up Webhook
Next
Update Country Visibility API
Built with