> ## 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.

# 削除済み

> removed()

[\< 戻る](/ja/sdks/languages/java#removed)

<div id="overview">
  ## 概要
</div>

<div id="available-operations">
  ### 利用可能な操作
</div>

* [get](#get) - 削除済みデータを取得 (v2)

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

v2 エンドポイントから Removed を取得します

<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.GetRemovedResponse;
import org.benzinga.BZClient.models.operations.Type;

public class Application {

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

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

        GetRemovedResponse res = sdk.removed().get()
                .page(700347L)
                .pageSize(558834L)
                .type(Type.OFFERINGS)
                .updated(521235L)
                .call();

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

<div id="parameters">
  ### パラメーター
</div>

| Parameter  | Type                                               | Required             | Description  |
| ---------- | -------------------------------------------------- | -------------------- | ------------ |
| `page`     | *Optional\<Long>*                                  | :heavy\_minus\_sign: | ページ番号        |
| `pageSize` | *Optional\<Long>*                                  | :heavy\_minus\_sign: | ページサイズ       |
| `type`     | [Optional\<Type>](../../models/operations/Type.md) | :heavy\_minus\_sign: | 種別           |
| `updated`  | *Optional\<Long>*                                  | :heavy\_minus\_sign: | Unix 形式の更新日時 |

<div id="response">
  ### レスポンス
</div>

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

<div id="errors">
  ### エラー
</div>

| エラー種別                      | ステータスコード | Content-Type |
| -------------------------- | -------- | ------------ |
| models/errors/APIException | 4XX, 5XX | */*          |
