Floriclient is a JavaScript client for the FloriCode API.
Install the package using yarn or npm
yarn add @bloovery/floriclient
Instantiate the class with the provided client id (username) and client secret (password).
const Floriclient = require('floriclient')
const client = new Floriclient('USERNAME', 'PASSWORD')
// Retrieve a product by ID
const product = await client.getProductById(20453)
// Product {
// id: 20453,
// name: "Aglaonema 'Cleopatra'",
// shortName: 'AGLAO CLEOPATRA',
// plantRegistratorId: 1,
// plantTaxonomicNumber: 150125,
// compositeIndicator: 0,
// productGroupId: 20606401,
// entryDate: '2002-09-25',
// changeDateTitme: '2010-10-26T08:57:00+02:00',
// expiryDate: null
// }
- Added
top
to limitgetProducts
results - Exposed
apiClient
to call directly the API's
- Added
Name
class - Added
getProductsTranslated
andgetProductGroupsTranslated
methods
- Added
getProducts
method - Removed some unused properties