{
  "openapi": "3.0.0",
  "info": {
    "title": "WeChat Channels Export Id Conversion API (V1)",
    "version": "1.0.0",
    "description": "Converts an encrypted WeChat Channels exportId from search results into the video object id and account identity fields. Use it before calling video detail, metrics, or comment endpoints that require objectId."
  },
  "servers": [
    {
      "url": "https://api.justoneapi.com",
      "description": "prod-global (default)"
    },
    {
      "url": "http://47.117.133.51:30015",
      "description": "prod-cn (optional for Mainland China)"
    }
  ],
  "paths": {
    "/api/weixin-channels/convert-export-id/v1": {
      "get": {
        "tags": [
          "WeChat Channels"
        ],
        "summary": "Export Id Conversion",
        "description": "Converts an encrypted WeChat Channels exportId from search results into the video object id and account identity fields. Use it before calling video detail, metrics, or comment endpoints that require objectId.",
        "operationId": "getApiWeixinChannelsConvertExportIdV1",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "Access token for this API service.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "exportId",
            "in": "query",
            "description": "Encrypted WeChat Channels exportId returned by video search results.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "*/*": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string",
                      "enum": [
                        "0",
                        "100",
                        "101",
                        "202",
                        "300",
                        "301",
                        "302",
                        "303",
                        "400",
                        "500",
                        "600",
                        "601"
                      ]
                    },
                    "message": {
                      "type": "string"
                    },
                    "data": {
                      "type": "object"
                    },
                    "recordTime": {
                      "type": "string",
                      "format": "date-time"
                    }
                  }
                }
              }
            }
          }
        },
        "x-order": "16201420",
        "x-api-version": "v1",
        "x-highlights": []
      }
    }
  },
  "components": {}
}