# 修改api存储数据

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /admin/info:
    post:
      summary: 修改api存储数据
      deprecated: false
      description: ''
      tags:
        - 管理类
      parameters:
        - name: User-Agent
          in: header
          description: ''
          example: MSL API Test
          schema:
            type: string
            default: MSL API Test
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                notice:
                  type: string
                noticeMd:
                  type: string
                noticeID:
                  type: integer
                latestVersion:
                  type: string
                downloadNormalUrl:
                  type: string
                updateLog:
                  type: string
                tips:
                  type: array
                  items:
                    type: string
                frpc:
                  type: object
                  properties:
                    amd64:
                      type: object
                      properties:
                        file:
                          type: string
                        file_os6:
                          type: string
                      required:
                        - file
                        - file_os6
                      x-apifox-orders:
                        - file
                        - file_os6
                  required:
                    - amd64
                  x-apifox-orders:
                    - amd64
                curseforge:
                  type: object
                  properties:
                    token:
                      type: string
                    account:
                      type: string
                  required:
                    - token
                    - account
                  x-apifox-orders:
                    - token
                    - account
                p2pServer:
                  type: object
                  properties:
                    ip:
                      type: string
                    port:
                      type: integer
                  required:
                    - ip
                    - port
                  x-apifox-orders:
                    - ip
                    - port
              required:
                - notice
                - noticeMd
                - noticeID
                - latestVersion
                - downloadNormalUrl
                - updateLog
                - tips
                - frpc
                - curseforge
                - p2pServer
              x-apifox-orders:
                - notice
                - noticeMd
                - noticeID
                - latestVersion
                - downloadNormalUrl
                - updateLog
                - tips
                - frpc
                - curseforge
                - p2pServer
            example:
              code: 200
              message: ''
              data:
                notice: >-
                  如果服务器崩溃无法开启，请先尝试以下方法自行解决：

                  1.检查服务器路径是否含有中文、空格或特殊字符

                  2.如果服务器的Java是自己手动选择的，请尝试使用开服器的Java（开服器下载Java功能）

                  3.如果更换Java无果后可以尝试更换服务端

                  4.如果服务器启动后有报错（红色日志）且服务器自动关闭，请查看自己是否加载了模组或插件，并尝试先把模组和插件移除再试，若移除后能正常开服，就排查是哪些模组或插件造成的崩溃

                  5.开服器提供有崩溃分析功能，尝试使用此功能进行排查

                  6.开服器不会恶意造成服务器崩溃等问题，若无法开服，通常是由以上问题造成的，如果尝试以上方法后还是无法解决问题，请进群询问：1145888872
                noticeID: 2
                latestVersion: 3.5.4
                downloadNormalUrl: https://files.mslmc.cn/MSL.exe
                updateLog: 更新日志测试
                tips:
                  - |-
                    MSL的Github仓库：https://github.com/MSLTeam/MSL
                    如果发现软件bug，可前往仓库发issue，我们会就问题进行分析处理！
                    （注意是软件问题，不是由于java或服务端问题造成无法开服的情况，后者您可根据公告进行排查
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties: {}
                x-apifox-orders: []
          headers: {}
          x-apifox-name: 成功
      security:
        - bearer: []
      x-apifox-folder: 管理类
      x-apifox-status: developing
      x-run-in-apifox: https://app.apifox.com/web/project/7956474/apis/api-429587285-run
components:
  schemas: {}
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
servers: []
security: []

```
