Developer Console
Merci de votre visite. Cette page est disponible en anglais uniquement.

Catalog Frequently Asked Questions

Summary

The following is a list of common questions asked regarding the Jut Walk Out catalog service

Frequently Asked Questions

Q: I am receiving a 403 un-authorized error when I invoke the catalog API

A: The 403 error when calling the Amazon API can be triggered due to a few common issues. If you are unable to resolve the issue please reach out to your Amazon contact.

  1. Missing permission: The AWS IAM role you are assuming is missing the necessary permissions to invoke the API. The IAM role needs to have the execute-api permission. If you do not have a policy that provides that permission you will get a 403 error.

  2. Onboarding to Amazon is not complete: You will need to complete the onboarding for your AWS account to the Amazon systems using the steps here to authorize your account to call the Amazon API.

Q: I setup the SQS URL but I do not see the subscription message

A: Check your SQS policy to ensure the correct permissions are setup especially the SNS ARN in the source to ensure that the Amazon SNS is able to publish to your SQS.

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "AllowSNSToSendMessage",
            "Effect": "Allow",
            "Principal": "*",
            "Action": "sqs:SendMessage",
            "Resource": "YOUR_SQS_ARN",
            "Condition": {
                "ArnEquals": {
                    "aws:SourceArn": "AMAZON_SNS_TOPIC_ARN"
                }
            }
        }
    ]
}

Q: Can I delete an item in the Just Walk Out catalog?

A: You can delete an item in the Just WalkOut service by working with the Amazon support team.

Q: Can I update an item SKU in the Just Walk Out catalog?

A: You can update an item SKU in the Just WalkOut service by working with the Amazon support team.

Q: Is there a limit on the number of items for the Catalog API?

A: Yes , there is a limit of 10 requests per second and 10,000 items per upload Further details can be seen here