Skip to content
Draft
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
6 changes: 3 additions & 3 deletions .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ jobs:
strategy:
matrix:
os: [windows-2022, windows-2025, ubuntu-22.04, ubuntu-24.04]
java-version: ["11", "17", "21"]
java-version: ["11", "17", "21", "25"]
distribution: ["zulu", "temurin"]
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up JDK
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
distribution: ${{ matrix.distribution }}
java-version: ${{ matrix.java-version }}
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

*.prefs

# build files
**/target
target
Expand Down
4 changes: 4 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,10 @@ src/main/java/com/bandwidth/sdk/auth/ApiKeyAuth.java
src/main/java/com/bandwidth/sdk/auth/Authentication.java
src/main/java/com/bandwidth/sdk/auth/HttpBasicAuth.java
src/main/java/com/bandwidth/sdk/auth/HttpBearerAuth.java
src/main/java/com/bandwidth/sdk/auth/OAuth.java
src/main/java/com/bandwidth/sdk/auth/OAuthFlow.java
src/main/java/com/bandwidth/sdk/auth/OAuthOkHttpClient.java
src/main/java/com/bandwidth/sdk/auth/RetryingOAuth.java
src/main/java/com/bandwidth/sdk/model/AbstractOpenApiSchema.java
src/main/java/com/bandwidth/sdk/model/AccountStatistics.java
src/main/java/com/bandwidth/sdk/model/AdditionalDenialReason.java
Expand Down
2 changes: 1 addition & 1 deletion .openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.10.0
7.16.0
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Bandwidth
- API version: 1.0.0
- Generator version: 7.10.0
- Generator version: 7.16.0

Bandwidth's Communication APIs

Expand Down Expand Up @@ -98,6 +98,10 @@ public class Example {
Basic.setUsername("YOUR USERNAME");
Basic.setPassword("YOUR PASSWORD");

// Configure OAuth2 access token for authorization: OAuth2
OAuth OAuth2 = (OAuth) defaultClient.getAuthentication("OAuth2");
OAuth2.setAccessToken("YOUR ACCESS TOKEN");

CallsApi apiInstance = new CallsApi(defaultClient);
String accountId = "9900000"; // String | Your Bandwidth Account ID.
CreateCall createCall = new CreateCall(); // CreateCall | JSON object containing information to create an outbound call
Expand Down Expand Up @@ -341,6 +345,14 @@ Authentication schemes defined for the API:

- **Type**: HTTP basic authentication

<a id="OAuth2"></a>
### OAuth2

- **Type**: OAuth
- **Flow**: application
- **Authorization URL**:
- **Scopes**: N/A


## Recommendation

Expand Down
Loading
Loading