info: name: Get Job type: http seq: 1 tags: - jobs http: method: GET url: "{{baseUrl}}/jobs/:job_id" params: - name: job_id value: "" type: path auth: type: bearer token: "{{token}}" settings: encodeUrl: true timeout: 0 followRedirects: true maxRedirects: 5 examples: - name: 200 Response description: Successful Response request: url: "{{baseUrl}}/jobs/:job_id" method: GET params: - name: job_id value: "" type: path response: status: 200 statusText: OK headers: - name: Content-Type value: application/json body: type: json data: |- { "id": "", "status": "", "target_language": "", "complexity_level": "", "created_at": "", "generated_text": "", "input_summary": "", "error_message": "" } - name: 422 Response description: Validation Error request: url: "{{baseUrl}}/jobs/:job_id" method: GET params: - name: job_id value: "" type: path response: status: 422 statusText: Unprocessable Entity headers: - name: Content-Type value: application/json body: type: json data: |- { "detail": [ { "loc": [], "msg": "", "type": "", "input": "", "ctx": {} } ] }