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 Country Visibility API

POST
https://nm-mp-api-seller.noon.partners/_integ/update-country-visibility
Update country visibility for a given partner_sku

Request

Body Params application/json

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

Responses

🟢200Success
application/json
Headers

Body

Example
{
    "updated_partner_skus": [
        "partner_sku1_sa"
    ],
    "errors": {
        "XYZ789_ae": "Error message",
        "DEF456_sa": "Error message"
    }
}
Modified at 2025-05-12 10:53:55
Previous
Update Price API
Next
Get Price and Country Visibility API
Built with