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

# Removed

> removed()

[\< BACK](/sdks/languages/java#removed)

## Overview

### Available Operations

* [get](#get) - Get Removed (v2)

## get

Get Removed from v2 endpoint

### Example Usage

```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()) {
            // handle response
        }
    }
}
```

### Parameters

| Parameter  | Type                                               | Required             | Description                 |
| ---------- | -------------------------------------------------- | -------------------- | --------------------------- |
| `page`     | *Optional\<Long>*                                  | :heavy\_minus\_sign: | Page number                 |
| `pageSize` | *Optional\<Long>*                                  | :heavy\_minus\_sign: | Page size                   |
| `type`     | [Optional\<Type>](../../models/operations/Type.md) | :heavy\_minus\_sign: | Type                        |
| `updated`  | *Optional\<Long>*                                  | :heavy\_minus\_sign: | Updated time in Unix format |

### Response

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

### Errors

| Error Type                 | Status Code | Content Type |
| -------------------------- | ----------- | ------------ |
| models/errors/APIException | 4XX, 5XX    | \*/\*        |
