📬
What's new
This page includes released updates on the APIs and the related changes.
The Standardise Jobs API allows you to submit up to 100 custom job title strings and get the corresponding top 3 standardised jobs from the Boostrs platform.
A complete description of the API and the output sample is available in the Standardise Jobs page, in the Mapping APIs menu section.
The APIs supporting language translation parameters are now allowing you to do the following:
- get the default language translations (en, fr, de, es, it)
- request translations in up to 5 specific languages by using the newly added
translation_languages
parameter
A complete list of language translations and their ISO codes is available in the Getting started page, in the Languages section.
The size limit for Import, Update and Delete Skills Batch APIs has changed to 300 items per batch.
This new library allows you to create multiple types of entities (documents, objects and object pools) and match the content (pool) to a specific object type.
For instance you can use the new Map & Match API library to identify the best match between a job posting (an object) and a group (pool) of profiles in order to identify the profiles with the best match level.
Added support for 3 (three) more languages in the
Accept-Language
header, for the Boostrs platform jobs, skills and categories translations.The accepted
en
flag remains the the default flag.The languages returned by APIs, via translation parameters, now include:
de
- Germanes
- Spanishit
- Italian
The translation response structure was updated for all the job and skill APIs returning translations in the response, including the APIs that return repository or category translations.
The original response model that was returning translations as objects was updated and now returns translations as an array of objects and includes the item language code in the structure.
The rest of the API response structure remains unchanged. This update aligns the response structure across all objects returned by the APIs in the library.
"translations": {
"en": {
"name": "manage loan applications",
"description": "Manage the application process for loans from the process of interviewing the applicant and reviewing the documentation, assessing the risks, and accepting or denying the loan and ensuring compliance with the underwriting process."
},
"fr": {
"name": "gérer des demandes de prêt",
"description": "Gérer la procédure de demande de prêts en suivant le processus consistant à interroger le demandeur et à examiner la documentation, à évaluer les risques et à accepter ou refuser le prêt et à garantir le respect du processus de souscription."
}
}
"translations": [
{
"code": "en",
"name": "manage loan applications",
"description": "Manage the application process for loans from the process of interviewing the applicant and reviewing the documentation, assessing the risks, and accepting or denying the loan and ensuring compliance with the underwriting process."
},
{
"code": "fr",
"name": "gérer des demandes de prêt",
"description": "Gérer la procédure de demande de prêts en suivant le processus consistant à interroger le demandeur et à examiner la documentation, à évaluer les risques et à accepter ou refuser le prêt et à garantir le respect du processus de souscription."
}
]
A new set of parameters was added for Super Skills and Meta Skills related APIs.
Super Skill List
- Added
translations
(optional parameter) for retrieving the translations for Super Skills - Added
meta_skills.translations
(optional parameter) the underlying Meta Skills
Meta Skill List
- Added
translations
(optional parameter) for retrieving the translations for Super Skills
Skill List
The following optional filtering parameters were added in order to allow the retrieval of skills from a specific hierarchical skill parent (Super Skills or Meta Skills):
- Added
super_skill_id
parameter for retrieving the skills from a specific Super Skill - Added
meta_skill_id
parameter for retrieving the skills from a specific Meta Skill
Last modified 1yr ago