메인 콘텐츠로 건너뛰기
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" }
}