How can I query a public facing URL to get my AWS Personalize recommendations?

98 Views Asked by At

The AWS Personalize docs state that I can query my campaign and solution like so:

POST /personalize-ranking HTTP/1.1
Content-type: application/json

{
   "campaignArn": "string",
   "context": { 
      "string" : "string" 
   },
   "filterArn": "string",
   "inputList": [ "string" ],
   "userId": "string"
}

You will notice that there is no reference to any fully defined endpoint, or how to set one up. Further in the docs, there is only references to making this call using AWS wrappers/SDKs. I cannot use a wrapper for my use case. I need to know how to define an endpoint in a way that I can make this call from a curl command or javascript fetch call, for example. When creating an API gateway, Personalize is not a selectable AWS service.

How do I find/create the URL that I can querying against to get AWS Personalize data?

0

There are 0 best solutions below