Based on https://github.com/fraigo/node-express-rest-api-example
This provides an API endpoint for creating/reading/updating/deleting on-call engineers to provide a simple example of integration.
Get a list of users
{
"message": "success",
"data": [
{
"id": 1,
"name": "admin",
"email": "admin@stackpule.com",
"tenant": "stackpulse"
},
{
"id": 2,
"name": "bob",
"email": "bob@neilcar.com",
"password": "neilcar"
}
]
}
Get user information by user id
{
"message": "success",
"data": {
"id": 1,
"name": "admin",
"email": "admin@stackpule.com",
"tenant": "stackpulse"
}
}
To create a new user based on POST data (x-www-form-url-encoded)
- name: User name
- email: User email
- tenant: User's tenant
To update user data by id, based on POST data (x-www-form-url-encoded)
- name: User name
- email: User email
- tenant: User's tenant
You can send only one attribute to update, the rest of the info remains the same.
In this example, using CURL you can update the user email:
curl -X PATCH -d "email=user@example1.com" http://localhost:8000/api/user/2
To remove a user from the database by user id.
This example is using the curl
command line
curl -X "DELETE" http://localhost:8000/api/user/2
The result is:
{"message":"deleted","rows":1}
Testing secret detection. This is not a real secret no matter how much it might look like one.
[default] aws_access_key_id = AKIASP2TPHJSZS32SDJB aws_secret_access_key = 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 output = json region = us-east-2