Skip to content

上传签收报告 API

PathMethodCreated At
/api/projects/files/receivingPUT2025-11-29 00:39:11

Request

KeyRuleDescription
idstring,size:24项目不存在
receiving_report_urlstring终验报告URL不能为空

Response

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

TypeScript Result Example:

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