Skip to main content

Fetch a previously submitted task

GET 

/tasks/:jobid

Fetch a document and associated processing task by task id.

This task is linked to a single document. If the task is DELETED, all associated links will lead to non-existent URLs, as the corresponding document has been removed from our system.

Request

Path Parameters

    jobid stringrequired

    Id of the task to retrieve.

Header Parameters

    x-amz-security-token stringrequired

    Request signature (see the authentication section).

Responses

Successful query.

Schema

    clientFilename string

    File name as submitted

    jobid stringrequired

    ID of the task

    submitted integerrequired

    Time of creation (seconds since epoch)

    companyName stringrequired

    Your client name

    client stringrequired

    Your organisation name

    modelUrl uri

    Possible values: Value must match regular expression ^https://

    URL to download model (if requested with includePresigned)

    modelFilename string

    Path of the output model file in S3 (see modelUrl for a presigned URL)

    originalFilename string

    Path of the original uploaded file in S3

    clientModelFilename string

    Suggested file name for the output model: clientFilename, but with extension changed to .json

    status stringrequired

    Possible values: [PENDING_UPLOAD, PROCESSING, DELETED, SUCCESS]

    Task status

Loading...