Update products

POST /catalog/product/

update products

application/json

Body Required

A list of products.

  • sku string Required

    The SKU of the item.

    Minimum length is 1.

  • price number

    The price of the item.

    Minimum value is 0, maximum value is 1000000.0.

  • quantity integer

    The quantity of the item.

    Minimum value is 0, maximum value is 1000000.

  • currency string(currency)

    currency by ISO3 code

    Minimum length is 3, maximum length is 3.

Responses

  • 200 application/json

    Update catalog product response

    Hide headers attributes Show headers attributes
    Hide response attribute Show response attribute object
    • updated number Required

      Count of updated products.

  • 400 application/json

    Bad request

    Hide headers attributes Show headers attributes
    Hide response attributes Show response attributes object

    An error response returned when the request is unsuccessful.

    • code string Required

      An error code that identifies the type of error that occurred.

    • message string Required

      A message that describes the error condition in a human-readable form.

    • data object Required

      Additional information that can help the caller understand or fix the issue.

  • 404 application/json

    Command is not found

    Hide response attributes Show response attributes object

    An error response returned when the request is unsuccessful.

    • code string Required

      An error code that identifies the type of error that occurred.

    • message string Required

      A message that describes the error condition in a human-readable form.

    • data object Required

      Additional information that can help the caller understand or fix the issue.

  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object

    An error response returned when the request is unsuccessful.

    • code string Required

      An error code that identifies the type of error that occurred.

    • message string Required

      A message that describes the error condition in a human-readable form.

    • data object Required

      Additional information that can help the caller understand or fix the issue.

  • 429 application/json

    Too many requests

    Hide headers attributes Show headers attributes
    Hide response attributes Show response attributes object

    An error response returned when the request is unsuccessful.

    • code string Required

      An error code that identifies the type of error that occurred.

    • message string Required

      A message that describes the error condition in a human-readable form.

    • data object Required

      Additional information that can help the caller understand or fix the issue.

  • 500 application/json

    Internal server error

    Hide response attributes Show response attributes object

    An error response returned when the request is unsuccessful.

    • code string Required

      An error code that identifies the type of error that occurred.

    • message string Required

      A message that describes the error condition in a human-readable form.

    • data object Required

      Additional information that can help the caller understand or fix the issue.

POST /catalog/product/
curl \
 -X POST https://m2e.cloud/api/v1/api/catalog/product/ \
 -H "access-token: $API_KEY" \
 -H "Content-Type: application/json" \
 -d '[{"sku":"test-product-SKU","price":99.99,"quantity":17,"currency":"USD"}]'
Request example
[
  {
    "sku": "test-product-SKU",
    "price": 99.99,
    "quantity": 17,
    "currency": "USD"
  }
]
Response examples (200)
# Headers
X-RateLimit-Limit: 100
X-RateLimit-Remaining: 90
X-RateLimit-Retry-After: 2022-11-04T13:43:28Z

# Payload
{
  "updated": 10
}
Response examples (400)
# Headers
X-RateLimit-Limit: 100
X-RateLimit-Remaining: 90
X-RateLimit-Retry-After: 2022-11-04T13:43:28Z

# Payload
[
  {
    "code": 404,
    "message": "Not found.",
    "data": {}
  }
]
Response examples (404)
[
  {
    "code": 404,
    "message": "Not found.",
    "data": {}
  }
]
Response examples (401)
[
  {
    "code": 404,
    "message": "Not found.",
    "data": {}
  }
]
Response examples (429)
# Headers
X-RateLimit-Limit: 100
X-RateLimit-Remaining: 90
X-RateLimit-Retry-After: 2022-11-04T13:43:28Z

# Payload
[
  {
    "code": 404,
    "message": "Not found.",
    "data": {}
  }
]
Response examples (500)
[
  {
    "code": 404,
    "message": "Not found.",
    "data": {}
  }
]