Get job result data
GEThttp://localhost:13033/conversion/v1.0/rest/jobs/:jobId/result/:resultId
Get result data, typically a document, of a job that has completed successfully.
Request
Responses
- 200
- 404
- 409
Successful response to the getJobResultData request
The job or result with the specified ID could not be found.
Unable to get result data, e.g. because it is not yet available. Call getJobResult
first.
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "http://localhost:13033/conversion/v1.0/rest/jobs/:jobId/result/:resultId");
request.Headers.Add("Accept", "*/*");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear