Apexバッチの処理内でAPIを実行
Apexバッチの処理内でAPIを実行する場合は『Database.AllowsCallouts』の宣言が必要になります。
global with sharing class testBatch implements Database.Batchable<sObject>, Database.Stateful, Database.AllowsCallouts{
public testBatch() {
}
}
kinkun's blog
Apexバッチの処理内でAPIを実行
Apexバッチの処理内でAPIを実行する場合は『Database.AllowsCallouts』の宣言が必要になります。
global with sharing class testBatch implements Database.Batchable<sObject>, Database.Stateful, Database.AllowsCallouts{
public testBatch() {
}
}