PixAI Platform
API ドキュメントタスク

タスク詳細の取得

指定したIDのタスク詳細を取得します。

GET
/task/{taskId}

Authorization

bearerAuth
AuthorizationBearer <token>

認証が必要なすべてのリクエストでは、HTTP ヘッダーに次を追加してください:

In: header

Path Parameters

taskId*string

取得するタスクの ID

Response Body

application/json

curl -X GET "https://api.pixai.art/v1/task/string"
{
  "id": "string",
  "status": "waiting",
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z",
  "startedAt": "2019-08-24T14:15:22Z",
  "endAt": "2019-08-24T14:15:22Z",
  "outputs": {
    "mediaIds": [
      "string"
    ],
    "mediaUrls": [
      "string"
    ]
  }
}
Empty