ModaDocs
Jobs

Get job status

Returns the current status and progress of a design job.

GET
/jobs/{job_id}

Authorization

bearerAuth
AuthorizationBearer <token>

API key from Settings > Developer > REST API. Format: moda_live_...

In: header

Path Parameters

job_id*string

Job UUID.

Formatuuid

Response Body

application/json

curl -X GET "https://api.moda.app/v1/jobs/497f6eca-6276-4993-bfeb-53cbbbba6f08"
{
  "job_id": "453bd7d7-5355-4d6d-a38e-d9e7eb218c3f",
  "canvas_id": "b62c6beb-2de8-4ee5-ac63-068ebe40140b",
  "canvas_url": "http://example.com",
  "conversation_id": "cc71b11a-25cd-4c2d-9950-df2cc38e3407",
  "status": "queued",
  "message": "string",
  "task": "string",
  "progress_percent": 100,
  "current_step": "string",
  "error": "string",
  "created_at": "2019-08-24T14:15:22Z",
  "started_at": "2019-08-24T14:15:22Z",
  "completed_at": "2019-08-24T14:15:22Z",
  "is_terminal": true,
  "can_export": true,
  "retry_after_seconds": 0,
  "credits": {
    "credits_used": 0,
    "credits_remaining": 0
  }
}