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
aliasesstring array
Alternative namesidentifiers for this package
tagsstring array
Category tags (e.g., "Assessment", "Background Check")
descriptionstring
Detailed description
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
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
aliasesstring array
Alternative namesidentifiers for this package
tagsstring array
Category tags (e.g., "Assessment", "Background Check")
descriptionstring
Detailed description
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
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