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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## [5.50.1](https://github.com/plivo/plivo-java/tree/v5.50.1) (2026-07-27)
**Feature - internal flag on Endpoint create**
- Added an optional `internal` builder param to `EndpointCreator`, serialized to the `internal` wire param on endpoint create
- Lets Plivo CX (Contacto) mark auto-created browser-SDK endpoints as internal so they are hidden from the customer's Endpoints tab
- Backward-compatible additive builder method

## [5.49.0](https://github.com/plivo/plivo-java/tree/v5.49.0) (2026-06-11)
**Feature - complianceApplicationId on phone number buy**
- Added an optional `complianceApplicationId` builder param to `PhoneNumberCreator`, serialized to the `compliance_application_id` wire param on phone number buy
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.plivo</groupId>
<artifactId>plivo-java</artifactId>
<version>5.49.0</version>
<version>5.50.1</version>
<name>plivo-java</name>
<description>A Java SDK to make voice calls &amp; send SMS using Plivo and to generate Plivo XML</description>
<licenses>
Expand Down
10 changes: 10 additions & 0 deletions src/main/java/com/plivo/api/models/endpoint/EndpointCreator.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ public class EndpointCreator extends VoiceCreator<EndpointCreateResponse> {
private final String password;
private final String alias;
private String appId;
private Boolean internal;

public EndpointCreator(String username, String password, String alias) {
this.username = username;
Expand All @@ -25,6 +26,15 @@ public EndpointCreator appId(final String appId) {
return this;
}

public Boolean internal() {
return this.internal;
}

public EndpointCreator internal(final Boolean internal) {
this.internal = internal;
return this;
}

@Override
protected Call<EndpointCreateResponse> obtainCall() {
return client().getVoiceApiService().endpointCreate(client().getAuthId(), this);
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/com/plivo/api/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.49.0
5.50.1
Loading