Skip to content

获取商机阶段列表 API

PathMethodCreated At
/api/business/opportunities/{id}/stagesGET2025-11-29 00:39:11

Request

KeyRuleDescription
idstring,size:24trans:validate.BO_NOT_FOUND

Response

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

TypeScript Result Example:

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