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

Get Price and Country Visibility API

GET
https://nm-mp-api-seller.noon.partners/_integ/get-price-and-country-visibility
Return prices and visibility status for specified country_code and partner_sku

Request

Body Params application/json

Example
[
    {
        "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 GET 'https://nm-mp-api-seller.noon.partners/_integ/get-price-and-country-visibility' \
--header 'Content-Type: application/json' \
--data-raw '[
    {
        "partner_sku": "string",
        "country_code": "ae"
    }
]'

Responses

🟢200Success
application/json
Headers

Body

Example
{
    "valid_list": [
        {
            "partner_sku": "partner_sku1",
            "country_code": "ae",
            "price": 0,
            "sale_price": 0,
            "is_active": true
        }
    ],
    "errors": {
        "XYZ789_ae": "Error message",
        "DEF456_sa": "Error message"
    }
}
Modified at 2025-05-12 10:53:35
Previous
Update Country Visibility API
Next
List Orders
Built with