-
In the AWS Lambda console, on the navigation panel, choose Applications.
-
On the Applications page, in the search field, search for
serverlessrepo-fork-example-ecommerce-
and then choose the application.my-app
-
In the Resources section, do the following:
-
To find the resource whose type is ApiGateway RestApi, sort the resources by Type, for example
ServerlessRestApi
, and then expand the resource. -
Two nested resources are displayed, of types ApiGateway Deployment and ApiGateway Stage.
-
Copy the link Prod API endpoint and append
/checkout
to it, for example:https://abcdefghij.execute-api.us-east-2.amazonaws.com/Prod/checkout
-
-
Copy the following JSON to a file named
test_event.json
.{ "id": 15311, "date": "2019-03-25T23:41:11-08:00", "status": "confirmed", "customer": { "id": 65144, "quantity": 2, "price": 25.00, "subtotal": 50.00 }] }
-
To send an HTTPS request to your API endpoint, pass the sample event payload as input by executing a
curl
command, for example:curl -d "$(cat test_event.json)" https://abcdefghij.execute-api.us-east-2.amazonaws.com/Prod/checkout
The API returns the following empty response, indicating a successful execution:
{ }
Did this page help you? - Yes
Thanks for letting us know we're doing a good job!
If you've got a moment, please tell us what we did right so we can do more of it.
Did this page help you? - No
Thanks for letting us know this page needs work. We're sorry we let you down.
If you've got a moment, please tell us how we can make the documentation better.
Previous topic:
Deploying the sample applicationNeed help?
PrivacySite termsCookie preferences
© 2025, Amazon Web Services, Inc. or its affiliates. All rights reserved.