Skip to main content
GET
/
v1
/
orders
/
{order_id}
Get order
curl --request GET \
  --url https://api.human.prod.artistree.io/v1/orders/{order_id} \
  --header 'Authorization: Bearer <token>'
{
  "order_id": "<string>",
  "username": "<string>",
  "email": "<string>",
  "order_state": "In Progress",
  "order_title": "<string>",
  "asset_id": "<string>",
  "asset_name": "<string>",
  "asset_last_modified_timestamp": "<string>",
  "ordered_by": "<string>",
  "creation_time": "<string>",
  "asset_preview_url": "<string>",
  "analysis_list": [
    {
      "analysis_type": "<string>",
      "analysis_passed": true
    }
  ],
  "analysis_failed_items": [
    "<string>"
  ],
  "tags": [
    "<string>"
  ],
  "confidence": 0,
  "remediation": 0,
  "annotations": [
    {
      "id": "<string>",
      "bodies": [
        {
          "value": "<string>",
          "id": "<string>",
          "annotation": "<string>"
        }
      ],
      "target": {
        "annotation": "<string>",
        "selector": {
          "type": "<string>",
          "geometry": {
            "bounds": {
              "minX": 123,
              "minY": 123,
              "maxX": 123,
              "maxY": 123
            },
            "x": 123,
            "y": 123,
            "w": 123,
            "h": 123
          }
        }
      }
    }
  ],
  "project": {
    "id": "<string>",
    "name": "<string>",
    "userRole": "<string>"
  },
  "reviewed_by": "<string>",
  "review_timestamp": "<string>",
  "layers_info": [
    {
      "layer_name": "<string>",
      "layer_url": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Headers

lang
string | null

Language preference for the response

Path Parameters

order_id
string
required
Required string length: 36

Query Parameters

download
boolean
default:false

Response

The order details

order_id
string
required
username
string
required
email
string
required
order_state
enum<string>
required
Available options:
In Progress,
Human Certified,
Action Required,
Reviewed
order_title
string
required
asset_id
string
required
asset_name
string
required
asset_last_modified_timestamp
string
required
ordered_by
string | null
required
creation_time
string
required
asset_preview_url
string | null
analysis_list
OrderAnalysisLine · object[]
analysis_failed_items
string[]
tags
string[]
confidence
number
default:0
remediation
number
default:0
annotations
HumanAnnotationDto · object[]
project
HumanProjectDto · object
reviewed_by
string | null
review_timestamp
string | null
layers_info
LayerInfoDto · object[]