Petstore-nodejs
Related pages:
Petstore-nodejs Technical Notes
Description
A fully working and operational component template to use for starting development of your own component for the elastic.io platform.. This component comes with a basic architecture which you can use on the platform.
Our documentation on building components in nodejs has more about each including file and their function.
Technical Notes
The technical notes page gives some technical details about Petstore-nodejs component like changelog.
Requirements
To use this component you must be registered platform user. Please see our home page at elastic.io to learn how to register.
Authentication
To authenticate use secret
as an API key.
Triggers
Get Pets By Status
Retrieves pets from the Petstore API by given pet status using Dynamic or Static Data Sample. The difference is how these functions are made. However, both can have the following statuses defined by the Petstore API.
The input fields are:
Available
- select to get all pets with statusAvailable
.Pending
- select forPending
.Sold
- select forSold
.
Actions
Creates a new pet
Creates a new Pet by making a POST
to /pet
endpoint of the API.
The input fields are:
name
- the name of the pet.status
- the status which can have oneAvailable
,Pending
andSold
values.
File Structure
The structure of petstore-component-nodejs component is quite flexible.
Our elastic.io platform expects only two files to be present
in the main directory. These are the component.json
and package.json
. Our
documentation on how to build a component in node.js
has more about each file and their function.