ジョブ ID で現在のステータスと結果を取得
cURL
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" } } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
ジョブ識別子
"12345"
ジョブステータスの取得に成功
ジョブ状態
"completed"
ジョブ結果
{ "success": true, "data": { "message": "Job completed successfully" }}
このページは役に立ちましたか?