Create an assessment package

POST/assessment/{connection_id}/package

Parameters

connection_idstring required
ID of the connection

Payload

Used by assessment providers to SUBMIT packages to ATS systems

idstring
Unique identifier for the assessment package
created_atdate
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
updated_atdate
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
workspace_idstring read-only
Workspace ID that this package belongs to (reference to KmsSpace)
connection_idstring read-only
Connection ID that this package belongs to
integration_typesstring array
Integration types that support this package
namestring
Name of the assessment package
type enum required
Valid values:
"SKILLS_TEST"
"BEHAVIORAL_ASSESSMENT"
"VIDEO_INTERVIEW"
"BACKGROUND_CHECK"
"REFERENCE_CHECK"
aliasesstring array
Alternative namesidentifiers for this package
tagsstring array
Category tags (e.g., "Assessment", "Background Check")
descriptionstring
Detailed description
parameters array
Questionsinputs needed for this assessment (aligned with verification)
has_redirect_urlboolean
Whether provider redirects user to complete assessment
has_target_urlboolean
Where provider redirects user after completion
needs_ip_addressboolean
Whether IP address is required
max_scorenumber
Maximum possible score if this assessment returns a score
info_urlstring
URL to find additional information about this package
regions array

Returns

Used by assessment providers to SUBMIT packages to ATS systems

idstring
Unique identifier for the assessment package
created_atdate
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
updated_atdate
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
workspace_idstring read-only
Workspace ID that this package belongs to (reference to KmsSpace)
connection_idstring read-only
Connection ID that this package belongs to
integration_typesstring array
Integration types that support this package
namestring
Name of the assessment package
type enum required
Valid values:
"SKILLS_TEST"
"BEHAVIORAL_ASSESSMENT"
"VIDEO_INTERVIEW"
"BACKGROUND_CHECK"
"REFERENCE_CHECK"
aliasesstring array
Alternative namesidentifiers for this package
tagsstring array
Category tags (e.g., "Assessment", "Background Check")
descriptionstring
Detailed description
parameters array
Questionsinputs needed for this assessment (aligned with verification)
has_redirect_urlboolean
Whether provider redirects user to complete assessment
has_target_urlboolean
Where provider redirects user after completion
needs_ip_addressboolean
Whether IP address is required
max_scorenumber
Maximum possible score if this assessment returns a score
info_urlstring
URL to find additional information about this package
regions array
const options = {
  method: 'POST',
  url: 'https://api.unified.to/assessment/5de520f96e439b002043d8dc/package',
  headers: {
    authorization: 'bearer .....'
  },
  data: undefined,

};

const results = await axios.request(options);
Are we missing anything? Let us know
Was this page helpful?