メインコンテンツへスキップ
GET
/
v2
/
job
/
{id}
ジョブ - 取得
curl --request GET \
  --url https://api.chainstream.io/v2/job/{id} \
  --header 'Authorization: Bearer <token>'
{
  "state": "completed",
  "result": {
    "success": true,
    "data": {
      "message": "Job completed successfully"
    }
  }
}

承認

Authorization
string
header
必須

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

パスパラメータ

id
string
必須

ジョブ識別子

:

"12345"

レスポンス

200 - application/json

ジョブステータスの取得に成功

state
string
必須

ジョブ状態

:

"completed"

result
object
必須

ジョブ結果

:
{
"success": true,
"data": { "message": "Job completed successfully" }
}