POST /platform/products/pick-product

Create or update a product in the platform using sku and the product data

application/json

Body Required

  • type string
  • name string
  • description string(nullable)
  • images array
  • sku string
  • price number
  • url string(nullable)

Responses

  • 201 application/json

    Returns the picked product

  • 403

    Forbidden - You don't have permission to access this route

POST /platform/products/pick-product
curl \
 --request POST 'https://domain.tld/api/v2/platform/products/pick-product' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"type":"string","name":"string","description":"string","images":[],"sku":"string","price":42.0,"url":"string"}'
Request examples
{
  "type": "string",
  "name": "string",
  "description": "string",
  "images": [],
  "sku": "string",
  "price": 42.0,
  "url": "string"
}