请求头
枚举值: 
application/jsonBearer 身份验证格式,例如:Bearer {{API 密钥}}。
响应
批处理任务对象数组。
列表中第一个批处理任务的 ID。
指示在该列表之外是否还有更多批处理任务。
列表中最后一个批处理任务的 ID。
对象类型,恒为 
list。curl --request GET \
  --url https://api.ppinfra.com/openai/v1/batches \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>'{
  "data": [
    {
      "id": "<string>",
      "object": "<string>",
      "endpoint": "<string>",
      "input_file_id": "<string>",
      "output_file_id": "<string>",
      "error_file_id": "<string>",
      "completion_window": "<string>",
      "in_progress_at": {},
      "expires_at": {},
      "finalizing_at": {},
      "completed_at": {},
      "failed_at": {},
      "expired_at": {},
      "cancelling_at": {},
      "cancelled_at": {},
      "status": "<string>",
      "errors": "<string>",
      "version": 123,
      "created_at": "<string>",
      "updated_at": {},
      "created_by": "<string>",
      "created_by_key_id": "<string>",
      "remark": "<string>",
      "total": 123,
      "completed": 123,
      "failed": 123,
      "metadata": {},
      "request_counts": {
        "total": 123,
        "completed": 123,
        "failed": 123
      }
    }
  ],
  "first_id": "<string>",
  "has_more": true,
  "last_id": "<string>",
  "object": "<string>"
}curl --request GET \
  --url https://api.ppinfra.com/openai/v1/batches \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>'{
  "data": [
    {
      "id": "<string>",
      "object": "<string>",
      "endpoint": "<string>",
      "input_file_id": "<string>",
      "output_file_id": "<string>",
      "error_file_id": "<string>",
      "completion_window": "<string>",
      "in_progress_at": {},
      "expires_at": {},
      "finalizing_at": {},
      "completed_at": {},
      "failed_at": {},
      "expired_at": {},
      "cancelling_at": {},
      "cancelled_at": {},
      "status": "<string>",
      "errors": "<string>",
      "version": 123,
      "created_at": "<string>",
      "updated_at": {},
      "created_by": "<string>",
      "created_by_key_id": "<string>",
      "remark": "<string>",
      "total": 123,
      "completed": 123,
      "failed": 123,
      "metadata": {},
      "request_counts": {
        "total": 123,
        "completed": 123,
        "failed": 123
      }
    }
  ],
  "first_id": "<string>",
  "has_more": true,
  "last_id": "<string>",
  "object": "<string>"
}application/json显示 properties
batch。48h。VALIDATING - 在批处理开始前正在验证输入文件PROGRESS - 批处理进行中COMPLETED - 批处理成功完成FAILED - 批处理失败EXPIRED - 批处理超过截止时间CANCELLING - 正在取消批处理CANCELLED - 批处理已取消list。