Java client for Sellf API - http://developers.sellfcrm.com
- Take your token from https://app.sellf.io/settings/api
- Create your API client
String token = "<YOUR_TOKEN>";
SellfApi apiClient = SellfApi.build(token);
- Create your first request - Get all available users
GetUsers req = new GetUsers();
try {
GetUsersResponse resp = SellfApi.build(token).execute(req);
List<User> users = resp.list();
/* Do whatever with your users list */
} catch (SellfApiRequestException e) {
/* Manage your error here */
}
All the contributions are very welcomed. Just follow the steps below:
- Fork the main repository.
- Clone your fork and set the upstream remote to the main repository.
- Create a topic branch from where you want to base your work.
- Setup your local environment to run and build the library with Maven.
- Make commits of logical units.
- Push your changes to a topic branch in your fork of the repository.
- Submit a pull request.
The Java Sellf API library is licensed under the MIT license.
If you find a bug or want to request a new feature, please open a GitHub issue.