Skip to main content
< 戻る

概要

利用可能な操作

  • get - カンファレンスコール情報を取得

取得

Conference Calls のデータを返します

使用例

package hello.world;

import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetConferenceCallsRequest;
import org.benzinga.BZClient.models.operations.GetConferenceCallsResponse;

public class Application {

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

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

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

        GetConferenceCallsResponse res = sdk.conferenceCalls().get()
                .request(req)
                .call();

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

パラメーター

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

レスポンス

GetConferenceCallsResponse

エラー

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