(splits())
- get - Get Splits
Returns splits calendar data
package hello.world;
import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.operations.GetSplitsRequest;
import com.benzinga.bzclient.models.operations.GetSplitsResponse;
import java.lang.Exception;
public class Application {
public static void main(String[] args) throws Exception {
Bzclient sdk = Bzclient.builder()
.apiKeyAuth("<YOUR_API_KEY_HERE>")
.build();
GetSplitsRequest req = GetSplitsRequest.builder()
.build();
GetSplitsResponse res = sdk.splits().get()
.request(req)
.call();
if (res.modelsSplitJSON().isPresent()) {
// handle response
}
}
}
Parameter | Type | Required | Description |
---|---|---|---|
request |
GetSplitsRequest | ✔️ | The request object to use for the request. |
Error Type | Status Code | Content Type |
---|---|---|
models/errors/APIException | 4XX, 5XX | */* |