Path parameters

Body Required

  • sku string Required

    product's sku

  • imei string Required

    product's Identifier

Responses

  • Add Imei to a product by sku and order's publicId

    Hide response attributes Show response attributes object
  • Bad request

    Hide response attributes Show response attributes object
  • Internal server error

    Hide response attributes Show response attributes object
POST /api/v2/imeis/{publicId}
curl \
 -X POST https://sandbox-w6wvm5a-qhobd463uhz3w.eu-2.platformsh.site/api/v2/imeis/{publicId} \
 -H "apikey: $API_KEY" \
 -d '{"sku":"string","imei":"string"}'
Request example
{
  "sku": "string",
  "imei": "string"
}
Response examples (200)
{
  "code": 200,
  "msg": "Success"
}
Response examples (400)
{
  "code": 400,
  "msg": "Bad Request"
}
Response examples (500)
{
  "code": 500,
  "msg": "Internale Server Error"
}