Add IMEI to a product by SKU and order publicId.

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://doc-seller.dipli.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Dipli - Seller API MCP server": {
  "url": "https://doc-seller.dipli.com/mcp"
}
Close
POST /api/v2/imeis/{publicId}

Path parameters

  • publicId string Required
application/json

Body Required

  • sku string Required

    Product SKU

  • imei string Required

    Product identifier

Responses

  • 200 application/json

    IMEI added

    Hide response attributes Show response attributes object
    • code integer
    • msg string
  • 400 application/json

    Bad request

    Hide response attributes Show response attributes object
    • code integer
    • msg string
  • 500 application/json

    Internal server error

    Hide response attributes Show response attributes object
    • code integer
    • msg string
POST /api/v2/imeis/{publicId}
curl \
 --request POST 'https://bi.agora.place/api/v2/imeis/{publicId}' \
 --header "apikey: $API_KEY" \
 --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": "Internal Server Error"
}