function testTalentioAPI() {
// Talentio の Token の取得方法については後述の資料を参照
var token = getTalentioAPIToken();
var headers = {
'Authorization': 'Bearer '+ token
};
var options = {
'method': 'GET',
'headers': headers,
};
// サンプルなのでページ数をハードコードしています
var response = UrlFetchApp.fetch('https://talentio.com/api/v1/candidates?page=24', options);
var candidates = JSON.parse(response.getContentText());
Logger.log(candidates);
}
function getTalentioAPIToken(){
// Talentio の Token はスクリプトプロパティに TALENTIO_API_TOKEN という名前で保存する
return PropertiesService.getScriptProperties().getProperty('TALENTIO_API_TOKEN');
}
More than 5 years have passed since last update.
人事自動化 ATS Talentio の API で候補者一覧を取得する - GAS 編
Last updated at Posted at 2019-10-14
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme