작업 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" }}
이 페이지가 도움이 되었나요?