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

POST /api/v2/imeis/{publicId}

Path parameters

application/json

Body Required

  • sku string Required

    product's sku

  • imei string Required

    product's Identifier

Responses

  • 200 application/json

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

    Hide response attributes Show response attributes object
  • 400 application/json

    Bad request

    Hide response attributes Show response attributes object
  • 500 application/json

    Internal server error

    Hide response attributes Show response attributes object
POST /api/v2/imeis/{publicId}
curl \
 --request POST 'https://bi.agora.place/api/v2/imeis/{publicId}' \
 --header "Content-Type: application/json" \
 --data '{"sku":"string","imei":"string"}'
Request examples
{
  "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"
}