Skip to content

Commit aa59748

Browse files
authored
Merge pull request #211 from intercom/timlim/remove-invalid-company-deletion-endpoint
Remove company deletion endpoint as it doesn't exist in the API
2 parents 5d6a9eb + de1c903 commit aa59748

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

intercom-java/src/main/java/io/intercom/api/Company.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,6 @@ public static Company update(Company company) throws InvalidException, Authoriza
4949
return DataResource.update(entity, "companies", Company.class);
5050
}
5151

52-
public static Company delete(String id) throws InvalidException, AuthorizationException {
53-
return DataResource.delete(id, "companies", Company.class);
54-
}
55-
5652
public static CompanyCollection list(Map<String, String> params) throws InvalidException, AuthorizationException {
5753
return DataResource.list(params, "companies", CompanyCollection.class);
5854
}

0 commit comments

Comments
 (0)