This Sample Solution provides all required resources to deploy to the AWS cloud a fully functional SP-API application that implements the Solicitations use case end-to-end. Use this application to test the proposed solution, do changes and/or integrate it to your own product.
The Selling Partner API for Solicitations (Solicitations API) helps you build applications that let sellers send consistent, high-quality solicitations to buyers. Sellers can request both a product review and seller feedback by sending a single template-based email.
If you haven't already, we recommend you to navigate the following resources:
- Solicitations API Use Case Guide
- Solicitations API v1 reference
- Enhancing user reviews and feedback blog post
This Sample Solution implements a solicitations workflow that reacts to incoming ORDER_CHANGE notifications and tries to submit a product review and seller feedback solicitation to the buyer at the appropriate time.
The solution consists of the following components:
- A Step Functions state machine with a fully functional Solicitations workflow
- Lambda functions that support each of the steps of the state machine
- An SQS queue to receive notifications for new or updated Amazon orders
- A Secrets Manager secret to securely store SP-API app credentials
The application waits for incoming SP-API ORDER_CHANGE notifications. These events are processed by the SPAPISolicitationScheduler Lambda function, which creates an EventBridge schedule for each shipped order. This schedule is triggered 5 days after the order's earliest delivery date, at which point a Step Functions state machine is started.
The state machine validates the available actions for the order by leveraging the SPAPIGetSolicitationActions Lambda function, which calls the getSolicitationActionsForOrder SP-API operation. If no actions are available, it waits for one day before retrying. If the productReviewAndSellerFeedback
action is available, it uses the SPAPISubmitSolicitation Lambda function to call the createProductReviewAndSellerFeedbackSolicitation SP-API operation to send a request to the buyer.
The pre-requisites for deploying the Sample Solution App to the AWS cloud are:
- Registering as a developer for SP-API, and registering an SP-API application
- An IAM user with permissions to create a new user, a policy, and attach it to the user
- If you don't have one, you can create it following the steps under Usage - 2. Configure Sample Solution App's IAM user
- The AWS CLI
- If not present, it will be installed as part of the deployment script
- NodeJS 14.15.0 or later
- Required by AWS CDK stack for the sample solution deployment.
- If not present, it will be installed as part of the deployment script.
- The Python app requires the following packages:
boto3
,requests
, andsetuptools
. If not present, they will be installed as part of the deployment script - GitBash
- in case you use Windows in order to run the deployment script.
To allow the Sample Solution App to connect to SP-API, the config file has to be updated to match the set-up of your SP-API application.
- Open app.config file and replace all occurrences of
<dev_value>
following the instructions below: - Update
ClientId
andClientSecret
attribute values with Client Id and Client Secret of the SP-API application respectively - Update
RefreshToken
attribute value with the refresh token of the selling partner you will be using for testing
Note: While updating the config file, don't leave blank spaces before and after
=
, and don't use quotation marks
ClientId=amzn1.application-oa2-client.abc123def456xyz789
ClientSecret=amzn1.oa2-cs.v1.abc123def456xyz789
RefreshToken=Atzr|Abc123def456xyz789
In order to execute the deployment script, an IAM user with the appropriate permissions is needed. To create a new IAM policy with the required permissions, follow the steps below.
- Open the AWS console
- Navigate to IAM Policies console
- Click Create policy
- Next to Policy editor, select JSON and replace the default policy with the JSON below. Make sure to replace
<aws_account_id_number>
your AWS account id number
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "SPAPISampleAppIAMPolicy",
"Effect": "Allow",
"Action": [
"iam:CreateUser",
"iam:DeleteUser",
"iam:CreatePolicy",
"iam:DeletePolicy",
"iam:AttachUserPolicy",
"iam:DetachUserPolicy",
"iam:CreateAccessKey",
"iam:DeleteAccessKey",
"iam:GetRole",
"iam:CreateRole",
"iam:TagRole",
"iam:AttachRolePolicy",
"iam:PutRolePolicy",
"iam:DeleteRole",
"iam:DeleteRolePolicy",
"iam:DetachRolePolicy",
"iam:PassRole"
],
"Resource": [
"arn:aws:iam::<aws_account_id_number>:user/*",
"arn:aws:iam::<aws_account_id_number>:policy/*",
"arn:aws:iam::<aws_account_id_number>:role/*"
]
},
{
"Sid": "SPAPISampleAppCloudFormationPolicy",
"Effect": "Allow",
"Action": [
"cloudformation:*",
"ecr:*",
"ssm:*"
],
"Resource": [
"arn:aws:cloudformation:us-east-1:<aws_account_id_number>:stack/CDKToolkit/*",
"arn:aws:ecr:us-east-1:<aws_account_id_number>:repository/cdk*",
"arn:aws:ssm:us-east-1:<aws_account_id_number>:parameter/cdk-bootstrap/*",
"arn:aws:cloudformation:us-east-1:<aws_account_id_number>:stack/sp-api-app*"
]
},
{
"Sid": "SPAPISampleAppCloudFormationS3Policy",
"Effect": "Allow",
"Action": [
"s3:*"
],
"Resource": [
"arn:aws:s3:::cdk*",
"arn:aws:s3:::sp-api-app-bucket*"
]
}
]
}
- Click Next
- Select a name for your policy. Take note of this value as you will need it in the next section.
- Review the changes and click Create policy
To create a new IAM user with the required permissions, follow the steps below.
- Open the AWS console
- Navigate to IAM Users console
- Click Create user
- Select a name for your user
- In the Set permissions page, select Attach policies directly
- In the Permissions policies, search for the policy created in I. Create IAM policy section. Select the policy, and click Next
- Review the changes and click Create user
Security credentials for the IAM user will be requested during the deployment script execution. To create a new access key pair, follow the steps below. If you already have valid access key and secret access key, you can skip this section.
- Open the AWS console
- Navigate to IAM Users console
- Select the IAM user created in II. Create IAM user
- Go to Security credentials tab
- Under Access keys, click Create access key
- In Access key best practices & alternatives page, select Command Line Interface (CLI)
- Acknowledge the recommendations, and click Next
- Click Create access key
- Copy
Access key
andSecret access key
. This is the only time that these keys can be viewed or downloaded, and you will need them while executing the deployment script - Click Done
The deployment script will create a Sample Solution App in the AWS cloud. To execute the deployment script, follow the steps below.
- Identify the deployment script for the programming language you want for your Sample Solution App.
- For example, for the Python application the file is app/scripts/python/python-app.sh
- Execute the script from your terminal or Git Bash
- For example, to execute the Python deployment script in a Unix-based system or using Git Bash, run
bash python-app.sh
- For example, to execute the Python deployment script in a Unix-based system or using Git Bash, run
- Wait for the CDK stack creation to finish
- Navigate to CloudFormation console
- Wait for the stack named sp-api-app-<language>-random_suffix to show status
CREATE_COMPLETE
The deployment script creates a Sample Solution App in the AWS cloud. The solution consists of a Step Functions state machine with a fully functional workflow. To test the sample solution, follow the steps below.
- Open the AWS console
- Navigate to SQS console
- Select the SQS queue created by the deployment script, named sp-api-notifications-queue-random_suffix. Make sure not to confuse the queue with the dead-letter queue named sp-api-notifications-dead-letter-queue-random_suffix
- Select Send and receive messages
- Under Message body, insert the following simplified notification body to execute a workflow in sandbox mode. If you want to test a real order, set
Sandbox
toNo
and replaceSellerId
,AmazonOrderId
, and all parameters underSummary
with the correct values of the order that you will use for testing.{ "NotificationType": "ORDER_CHANGE", "Payload": { "OrderChangeNotification": { "SellerId": "ABCDEF12345678", "AmazonOrderId": "123-1234567-1234567", "Summary": { "MarketplaceId": "ATVPDKIKX0DER", "OrderStatus": "Shipped", "EarliestDeliveryDate": "2024-01-01T13:30:00.000Z", "LatestDeliveryDate": "2024-12-31T13:30:00.000Z" } } }, "Sandbox": "Yes" }
- Click Send message
- The solution will create a schedule set to the order's
EarliestDeliveryDate
+ 5 days. If the date is in the past (like in the sample notification above), the schedule will be executed immediately. - After the EventBridge schedule's execution date, navigate to Step Functions console
- Select the state machine created by the deployment script, named SPAPIStateMachine-random_suffix
- Under Executions, you will see a workflow for the order submitted through SQS
- To check the workflow status and navigate into the individual steps, select the workflow and use the Graph view and Step Detail panels
The deployment script also creates a Lambda function that subscribes selling partners to notifications. You can integrate this function to your product to easily onboard to the notifications feature. To test the function, follow the steps below.
- Open the AWS console
- Navigate to Lambda console
- Select the notification subscriber function, named SPAPISubscribeNotifications-random_suffix
- Select Test tab
- Under Event JSON, insert the following payload. Replace
RefreshToken
,RegionCode
andNotificationType
with the corresponding values of the selling partner and notification type you want to subscribe to.{ "NotificationType": "ORDER_CHANGE", "RegionCode": "NA|EU|FE", "RefreshToken": "Atzr|Iw..." }
- Click Test
- The function will return
destination Id
andsubscription Id
The deployment script creates a number of resources in the AWS cloud which you might want to delete after testing the solution. To clean up these resources, follow the steps below.
- Identify the clean-up script for the programming language of the Sample Solution App deployed to the AWS cloud.
- For example, for the Python application the file is app/scripts/python/python-app-clean.sh
- Execute the script from your terminal or Git Bash
- For example, to execute the Python clean-up script in a Unix-based system or using Git Bash, run
bash python-app-clean.sh
- For example, to execute the Python clean-up script in a Unix-based system or using Git Bash, run
If the state machine execution fails, follow the steps below to identify the root-cause and retry the workflow
- Navigate to Step Functions console
- Select the state machine created by the deployment script, named SPAPIStateMachine-random_suffix
- Under Executions, you can use the Status column to identify failed executions
- To troubleshoot errors, select the corresponding workflow execution and use the Graph view and Step Detail panels
- After fixing the issues that caused the error, retry the workflow by clicking on New execution. The original input parameters will be automatically populated
- Click Start execution, and validate the results