agiove / java-sellf-api

Java client for Sellf API - http://developers.sellfcrm.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

java-sellf-api

Java client for Sellf API - http://developers.sellfcrm.com

How to make a request

	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 */
	}

Contributing

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.

License

The Java Sellf API library is licensed under the MIT license.

Feedback

If you find a bug or want to request a new feature, please open a GitHub issue.

About

Java client for Sellf API - http://developers.sellfcrm.com

License:MIT License


Languages

Language:Java 100.0%