> ## Documentation Index
> Fetch the complete documentation index at: https://docs.benzinga.com/llms.txt
> Use this file to discover all available pages before exploring further.

# مكالمات الأرباح

> conferenceCalls()

[\< رجوع](/ar/sdks/languages/java#conferencecalls)

<div id="overview">
  ## نظرة عامة
</div>

<div id="available-operations">
  ### العمليات المتاحة
</div>

* [get](#get) - جلب مكالمات المؤتمرات

<div id="get">
  ## get
</div>

يُرجِع بيانات مكالمات الأرباح (Conference Calls)

<div id="example-usage">
  ### مثال على الاستخدام
</div>

```java theme={null}
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()) {
            // معالجة الاستجابة
        }
    }
}
```

<div id="parameters">
  ### المعلمات
</div>

| Parameter | Type                                                                              | Required             | Description                     |
| --------- | --------------------------------------------------------------------------------- | -------------------- | ------------------------------- |
| `request` | [GetConferenceCallsRequest](../../models/operations/GetConferenceCallsRequest.md) | :heavy\_check\_mark: | كائن الطلب المستخدم لهذا الطلب. |

<div id="response">
  ### الاستجابة
</div>

**[GetConferenceCallsResponse](../../models/operations/GetConferenceCallsResponse.md)**

<div id="errors">
  ### الأخطاء
</div>

| نوع الخطأ                  | كود الحالة | نوع المحتوى |
| -------------------------- | ---------- | ----------- |
| models/errors/APIException | 4XX, 5XX   | */*         |
