Skip to content

修改产品品牌信息 API

PathMethodCreated At
/api/products/brands/PUT2025-11-29 00:39:11

Request

KeyRuleDescription
namestring,max:64trans:validate.NAME_LENGTH_MUST_THAN_64
iconurltrans:ICON_MUST_BE_URL

Response

KeyTypeExampleComment
codeint0编号:0表示成功,非0表示错误
messagestringsuccess成功为 success, 失败则错误消息

TypeScript Result Example:

TypeScript
interface Result {
  /** 编号:0表示成功,非0表示错误 */
  code: number;
  /** 成功为 success, 失败则错误消息 */
  message: string;
}