GET
/
unified
/
ats
/
assessments
/
orders
/
{id}
/
results
curl --request GET \
  --url https://api.stackone.com/unified/ats/assessments/orders/{id}/results \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'x-account-id: <x-account-id>'
{
  "data": {
    "id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
    "remote_id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
    "candidate": {
      "id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
      "remote_id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
      "profile_url": "https://exmaple.com/candidate?id=xyz"
    },
    "score": {
      "label": "Percentage",
      "value": "80",
      "min": "0",
      "max": "100"
    },
    "start_date": "2021-01-01T01:01:01.000Z",
    "submission_date": "2021-01-01T01:01:01.000Z",
    "summary": "Test is passed",
    "result": {
      "value": "passed",
      "source_value": "Passed"
    },
    "result_url": "https://exmaple.com/result?id=xyz",
    "attachments": [
      {
        "url": "http://example.com/resume.pdf",
        "content_type": {
          "value": "text",
          "source_value": "Text"
        }
      }
    ]
  },
  "raw": [
    {
      "method": "<string>",
      "url": "<string>",
      "body": "<string>",
      "response": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Headers

x-account-id
string
required

The account identifier

Path Parameters

id
string
required

Query Parameters

raw
boolean | null
default:false

Indicates that the raw request result is returned

proxy
object | null

Query parameters that can be used to pass through parameters to the underlying provider request by surrounding them with 'proxy' key

fields
string | null

The comma separated list of fields that will be returned in the response (if empty, all fields are returned)

Example:

"id,remote_id,candidate,score,start_date,submission_date,summary,result,result_url,attachments"

Response

200
application/json
The assessments result with the given identifier was retrieved.
data
object
required
raw
object[] | null