Automate Webhook Subscription on Marketplace
The Below Table explains the description of each Block present in Sequence Diagram
Component | Infra Description |
PubSub | Topic Name: app_connections_events |
Default Service | App Engine Service Name: amzprime-order Service |
TaskQueue | Topic Name: “listen/taskqueueData“ Repository Name: esb-integration-engine |
Marketplace Webhook Subscription | API to register Webhook on the corresponding Marketplace |
Step 1. The POST endpoint “listener/automatewebhook “ will receive an eventMap from the PubSub topic “automationWebhook“. The event will be:
{
"resource": "channel",
"eventType": "POST",
"eventSubType": "CREATED",
"version": "v1"
"actor": "",
"accountId": 28,
"accountSlug": "montecarlo",
"responseData": {
"portalName": "Flipkart",
"channelAccountName": "",
"connectionId": 287,
"channelName": "CH4695",
"isEshopboxChannel": "",
"integrationModel": "Seller fulfilled Flipkart",
"warehouseName": "",
"channelId": 4695,
"integrationType":6
}
}
Step 2. Push the eventMap received from PubSub topic in TaskQueue.
Step 3. Return a 200 Ok response back to Pubsub from “listener/automatewebhook “ endpoint.
Step 4. “listen/taskQueueEvent“ this endpoint will receive the data from WebhookTaskQueue(This is not the default TaskQueue).
Step 5. Extract the “integrationType” from the event received from WebhookTaskQueue
Step 6. Depending upon the integrationType call the respective method to register Webhook.
As of now we have to Automate Webhook Subscription for two channels’s
Step Number | Description of Webhook Registration Flow for each Marketplace |
---|---|
Step 6.1 | Explains the flow Shopify Webhook Registration |
Step 6.2 | Explains the flow for Amazon prime Webhook Registration |
Step 6.1 integrationType = 7 corresponds to shopify so call method “prepareShopifyWebhook“ and extract“connectionId” from the data received from TaskQueue, using connectionId extract connectionDetails from DB only if it is not present in cache and then set them in cache.
Step 6.1.1 Extract accessToken and store_name from the connectionDetails and prepare webhook request body. There are 4 topics for shopify: "orders/create" , "orders/cancelled", "product_listings/add", "product_listings/update", prepare webhook request body and Eshopbox Webhook EndPoint URL for each topic in the given format:
Template for Eshopbox Webhook URL for Shopify on staging:
https://default-dot-shopify-integration-staging.appspot.com/_ah/api/esb/v1/webhook/"+{{topic Name}}+?+"connectionId="+connectionID
Template for Eshopbox Webhook URL for Shopify on prod:
https://default-dot-shopify-integration-prod.appspot.com/_ah/api/esb/v1/webhook/"+{{topic Name}}+?+"connectionId="+connectionID
Template for Shopify Webhook Registration Request Body:
{
"webhook": {
"topic": "topic Name",
"address": "https://default-dot-shopify-integration-staging.appspot.com/_ah/api/esb/v1/webhook/"+{{topic Name}}+?+"connectionId="+connectionID,
"format": "json"
}
}
Shopify Webhook Name | Webhook URL (Eshopbox Shopify Service) - STAGING | Webhook URL (Eshopbox Shopify Service) - PROD |
orders/create | ||
orders/cancelled | ||
product_listings/update | ||
product_listings/add |
Webhook Registration Request Body for Shopify on staging:
Topic: “orders/create”
{
"webhook": {
"topic": "orders/create",
"address": "https://default-dot-shopify-integration-staging.appspot.com/_ah/api/esb/v1/webhook/orders/create?connectionId=52",
"format": "json"
}
}
2. Topic: “orders/cancelled”
{
"webhook": {
"topic": "orders/cancelled",
"address": "https://default-dot-shopify-integration-staging.appspot.com/_ah/api/esb/v1/webhook/orders/cancelled?connectionId=52",
"format": "json"
}
}
3. Topic: “product_listings/update“
{
"webhook": {
"topic": "product_listings/update",
"address": "https://default-dot-shopify-integration-staging.appspot.com/_ah/api/esb/v1/webhook/product_listings/update?connectionId=52",
"format": "json"
}
}
4. Topic: “product_listings/add“
{
"webhook": {
"topic": "product_listings/add",
"address": "https://default-dot-shopify-integration-staging.appspot.com/_ah/api/esb/v1/webhook/product_listings/add?connectionId=52",
"format": "json"
}
}
Webhook Registration Request Body for Shopify on prod:
Topic: “orders/create“
{
"webhook": {
"topic": "orders/create",
"address": "https://default-dot-shopify-integration-prod.appspot.com/_ah/api/esb/v1/webhook/orders/create?connectionId=52",
"format": "json"
}
}
2. Topic: “orders/cancelled”
{
"webhook": {
"topic": "orders/cancelled",
"address": "https://default-dot-shopify-integration-prod.appspot.com/_ah/api/esb/v1/webhook/orders/cancelled?connectionId=52",
"format": "json"
}
}
3. Topic: “product_listings/update“
{
"webhook": {
"topic": "product_listings/update",
"address": "https://default-dot-shopify-integration-prod.appspot.com/_ah/api/esb/v1/webhook/product_listings/update?connectionId=52",
"format": "json"
}
}
4. Topic: “product_listings/add“
{
"webhook": {
"topic": "product_listings/add",
"address": "https://default-dot-shopify-integration-prod.appspot.com/_ah/api/esb/v1/webhook/product_listings/add?connectionId=52",
"format": "json"
}
}
Step 6.1.2 Prepare the Shopify Webhook Registration Endpoint URL at which the request body will be send
Template for webhook register URL:
https://{{store_name}}.myshopify.com/admin/api/2020-10/webhooks.json
Step 6.1.3 Register the webhook for each topic on shopify by making a post request on the above prepared URL by passing accessToken and webhook request body.
Step 6.2 integrationType = “8“ corresponds to amazon prime so call method “prepareAmazonPrimeWebhook“
Step 6.2.1 Extract amz Access Token using Amazon SDK Library Method only if not present in cache and then set it in cache. Prepare webhook request body for the topics “Orders.Created“, “Orders.Cancelled“, “Orders.Delivered“, “Orders.Updated“ using the below format:
Template for creating Eshopbox Webhook URL for Amazon on staging:
arn:aws:events:eu-west-1:460481696846:event-bus/amzprime-sandbox
Template for creating Eshopbox Webhook URL for Amazon on prod :
arn:aws:events:eu-west-1:460481696846:event-bus/amzprime-production
Template for creating Webhook Registration Request Body for Amazon:
{
"destination":"arn:aws:events:eu-west-1:460481696846:event-bus/Sandbox",
"events":[
"topic name"
]
}
Amazon Webhook Name | Webhook URL (Eshopbox Amazon Service) - STAGING | Webhook URL (Eshopbox Amazon Service) - STAGING |
Orders.Created | ||
Orders.Cancelled | https://default-dot-amzprime-integration-prod.appspot.com/_ah/api/esb/v1/webhook/orders/cancelled?connectionId=52 | |
Orders.Delivered | https://default-dot-amzprime-integration-prod.appspot.com/_ah/api/esb/v1/webhook/orders/delivered?connectionId=52 | |
Orders.Updated | https://default-dot-amzprime-integration-prod.appspot.com/_ah/api/esb/v1/webhook/orders/updated?connectionId=52 |
Webhook Registration Request Body for Amazon on staging:
Topic: “Orders.Created“
{ "destination":"arn:aws:events:eu-west-1:460481696846:event-bus/Sandbox", "events":[ "Orders.Created" ] }
2. Topic: “Orders.Cancelled”
{
"destination":"arn:aws:events:eu-west-1:460481696846:event-bus/Sandbox",
"events":[
"Orders.Cancelled"
]
}
3. Topic: “Orders.Delivered”
{
"destination":"arn:aws:events:eu-west-1:460481696846:event-bus/Sandbox",
"events":[
"Orders.Delivered"
]
}
4. Topic: “Orders.Updated”
{
"destination":"arn:aws:events:eu-west-1:460481696846:event-bus/Sandbox",
"events":[
"Orders.Updated"
]
}
Webhook Registration Request Body for Amazon on prod:
Topic: “Orders.Created“
{
"destination":"arn:aws:events:eu-west-1:460481696846:event-bus/prod",
"events":[
"Orders.Created"
]
}
2. Topic: “Orders.Cancelled”
{
"destination":"arn:aws:events:eu-west-1:460481696846:event-bus/prod",
"events":[
"Orders.Cancelled"
]
}
3. Topic: “Orders.Delivered”
{
"destination":"arn:aws:events:eu-west-1:460481696846:event-bus/prod",
"events":[
"Orders.Delivered"
]
}
4. Topic: “Orders.Updated”
{
"destination":"arn:aws:events:eu-west-1:460481696846:event-bus/prod",
"events":[
"Orders.Updated"
]
}
Step 6.2.2 Once the request body is prepared make a request to register the webhook for events (“Orders.Created”, “Orders.Cancelled“, “Orders.Delivered“, “Orders.Updated“) on Amazon. These subscriptions are created using Amazon SDK library Method:
Create Event Subscription:
EventSubscription Request Body: Convert the below prepared Webhook Request Body into the EventSubscription model.
(Note: The webhook request body must be prepared depending upon environment(Staging or Prod) as shown in the previous step)
Topic: “Orders.Created“
{
"destination":"arn:aws:events:eu-west-1:460481696846:event-bus/prod",
"events":[
"Orders.Created"
]
}
2. Topic: “Orders.Cancelled”
{
"destination":"arn:aws:events:eu-west-1:460481696846:event-bus/prod",
"events":[
"Orders.Cancelled"
]
}
3. Topic: “Orders.Delivered”
{
"destination":"arn:aws:events:eu-west-1:460481696846:event-bus/prod",
"events":[
"Orders.Delivered"
]
}
4. Topic: “Orders.Updated”
{
"destination":"arn:aws:events:eu-west-1:460481696846:event-bus/prod",
"events":[
"Orders.Updated"
]
}
Model: CreateEventsSubscriptionRequest
Method: eventsSubscription
create an event subscription request by passing the above prepared EventSubscription request body one by one for each Topic using method(eventsSubscription). This method will return an Object of CreateEventsSubscriptionRequest.
Model: CreateEventsSubscriptionResult
Method: createEventsSubscription
Pass the Object of CreateEventsSubscriptionRequest in the method(createEventsSubscription) to register the the webhook’s