Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@

The BasisTheory Java library provides convenient access to the BasisTheory APIs from Java.

## Table of Contents

- [Documentation](#documentation)
- [Usage](#usage)
- [Environments](#environments)
- [Base Url](#base-url)
- [Exception Handling](#exception-handling)
- [Advanced](#advanced)
- [Custom Client](#custom-client)
- [Retries](#retries)
- [Timeouts](#timeouts)
- [Contributing](#contributing)
- [Installation](#installation)

## Documentation

API reference documentation is available [here](https://api.basistheory.com).
Expand Down Expand Up @@ -40,7 +54,7 @@ import com.basistheory.core.Environment;

BasisTheoryApiClient client = BasisTheoryApiClient
.builder()
.environment(Environment.Default)
.environment(Environment.Production)
.build();
```

Expand Down
Loading