Skip to main content
< 戻る

概要

利用可能な操作

  • get - FDA を取得

取得

FDA承認、臨床試験、PDUFA日

使用例

package hello.world;

import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetFdaRequest;
import org.benzinga.BZClient.models.operations.GetFdaResponse;

public class Application {

    public static void main(String[] args) throws Exception {

        Bzclient sdk = Bzclient.builder()
                .apiKeyAuth("<YOUR_API_KEY_HERE>")
            .build();

        GetFdaRequest req = GetFdaRequest.builder()
                .build();

        GetFdaResponse res = sdk.fda().get()
                .request(req)
                .call();

        if (res.modelsFDAJSON().isPresent()) {
            // レスポンスを処理する
        }
    }
}

パラメーター

パラメーター必須説明
requestGetFdaRequest:heavy_check_mark:リクエストに使用するリクエストオブジェクト。

レスポンス

GetFdaResponse

エラー

エラー種別ステータスコードContent-Type
models/errors/APIException4XX, 5XX/