Last active
August 6, 2021 00:45
-
-
Save redgeoff/afd0a7ed7f787f85505881f92e489005 to your computer and use it in GitHub Desktop.
lambdaToExpress - lambda.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import leadService from './lead-service'; | |
// Define a handler for `PUT /lead/:leadId` that accepts the request body payload | |
// `{ name, email }` | |
const handler = async (event) => { | |
// Parse the request parameters | |
const { name, email } = JSON.parse(event.body); | |
const { leadId } = event.pathParameters; | |
// Assume this is the service-layer code that actually performs the updating of | |
// the lead | |
await leadService.update(leadId, name, email); | |
// Return a 200 success code and the full lead | |
return { | |
statusCode: 200, | |
body: JSON.stringify({ | |
id: leadId, | |
name, | |
}) | |
}; | |
} | |
export default handler; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment