4
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

人事自動化 ATS Talentio の API で候補者一覧を取得する - GAS 編

Last updated at Posted at 2019-10-14
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');
}

資料

関連

4
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?