Flipkart Notification Integration
Procedure For Notification Configuration in Flipkart
Step 1: Subscribing to Notifications
To use notifications:
You must be a registered seller on https://seller.flipkart.com.
Setup a notification receiver in your system. This is an HTTPS server that handles the API notifications triggered when a resource changes. For example: https://www.[your-website].com/notifications-receiver.
You should have a VAPT certificate for the notification receiver in your system.
Write to seller-api-queries@flipkart.com to subscribe to the notifications. Please provide the following details:
Seller id / Seller registered email address
Notification receiver URL
VAPT certificate for the URL
If return notifications are needed (Yes / NO)
If Yes then Notification receiver URL for return notification( This could be same as order notification URL)
If return notification URL is different then provide VAPT certificate for the URL
Location ids for which you wants to listen order and return notifications
Step 2: Authentication of Url
All Flipkart Notifications are RESTful notifications that send event payloads to the seller system endpoint.
Sellers authenticate to Flipkart API using OAuth credentials (Application ID
and Application Secret
). Those who wish to listen to notifications must register their notification endpoints with Flipkart. Sellers need a mechanism to validate whether the request originated from Flipkart and not by untrusted sources. Flipkart REST APIs authenticate to seller notification endpoints using a signature-based authentication by using Authorization headers.
Every notification includes headers in the following format:
X_Date : <date_timestamp>
X_Authorization : FKLOGIN Base64 (OAuth-appid : <fk_signature>)
Here,
date_timestamp
is the timestamp at which the notification is generated and is in “HTTP-Date” format.fk_signature
is generated per request using SHA1 based message digest algorithm with values derived from request as:SHA-1 (date_timestamp + notification_http_url + notification_http_method + OAuth-secret)
REST endpoints that receive these notifications need to authenticate the request by regenerating the Signature (fk_signature
) using the logic above and verifying it with the Authorization (X_Authorization
) header. Consider the following example.
Authentication Sample
Seller: PilotSeller OAuth Appication ID: OAuth Application Secret: Notification URL: Timestamp: Signature: SHA1(1432026135http://seller.api.pilotseller.com/notify/fkiPOST669a57f4-fe05-11e4-a322-1697f925ec7b) 83762abd87b41e66ddd58320a4e803251e72b776
Authorization Information: Base64(6113ca4a-fe05-11e4-a322-1697f925ec7b:83762abd87b41e66ddd58320a4e803251e72b776)NjExM2NhNGEtZmUwNS0xMWU0LWEzMjItMTY5N2Y5MjVlYzdiOjgzNzYyYWJkODdiNDFlNjZkZGQ1ODMyMGE0ZTgwMzI1MWU3MmI3NzY=
Headers X_Date: Tue, 19 May 2015 09:02:15 GMT X_Authorization: FKLOGIN NjExM2NhNGEtZmUwNS0xMWU0LWEzMjItMTY5N2Y5MjVlYzdiOjgzNzYyYWJkODdiNDFlNjZkZGQ1ODMyMGE0ZTgwMzI1MWU3MmI3NzY=
|
Step 3: Notification Response:
For notification, the seller application needs to respond with a standard HTTP success status 200, or should throw an error response in the following scenarios only:
When the seller system is down
If the payload is incorrect
The notification system ensures that the message is sent at least once, but not only once. Hence, it is recommended to add an idempotency check in the client to avoid processing duplicate notifications.
Step 4: Order Management Notification Reference
Event Received from Flipkart:
1. Shipment Created: Notification sent when an shipment is created in seller system.
Event Body:
{
"eventType": "shipment_created",
"source": "flipkart",
"version": "v3",
"locationId" : "LOC1234",
"timestamp": "2017-03-28T18:03:01+05:30",
"attributes": {
"dispatchByDate": "2017-04-10T10:00:00.000+05:30",
"dispatchAfterDate": "2017-04-06T18:21:25.000+05:30",
"updatedAt": "2017-04-06T18:17:01.000+05:30",
"hold": false,
"mps": false,
"subShipments": [{
"subShipmentId": "SS-1",
"packages": []
}],
"packagingPolicy": "GREEN_PACKAGE",
"orderItems": [{
"orderItemId": "1883380307363600",
"orderId": "OD108833803073636000",
"cancellationGroupId": "grp1883380307363600",
"orderDate": "2017-04-06T18:15:57.000+05:30",
"paymentType": "COD",
"status": "APPROVED",
"quantity": 1,
"fsn": "DIAE777EDCWNZSPZ",
"sku": "LKA041150",
"listingId": "LSTDIAE777EDCWNZSPZQMLAT0",
"hsn": null,
"title": "Lokalart Pocket-size Journal Yellow LKA041150",
"packageIds": [],
"priceComponents": {
"sellingPrice": 295.0,
"totalPrice": 295.0,
"shippingCharge": 0.0,
"customerPrice": 295.0,
"flipkartDiscount": 0.0
},
"is_replacement": false
}],
"forms": [{
"name": "GJ_403",
"link": "http://www.commercialtax.gujarat.gov.in/",
"automated": true
}],
"dispatchLocation": null
},
"shipmentId": "dc455f0e-b2f2-473a-9731-360ffbb23348"
}
2. UnHold: Notification sent after a shipment , which was flagged as Hold
, is released for further processing after making relevant verifications.
Attributes
possible value - APPROVED, PACKED
Event Structure:
{
"eventType": "shipment_unhold",
"source": "flipkart",
"version": "v3",
"timestamp": "2017-03-28T18:03:01+05:30",
"attributes": {
"status": "PACKED"
},
"shipmentId": "06837906-5857-449a-be93-b465f4d349a1"
}
Step 5: Notification URL Endpoint: where the Create Order Event will Hit (Event mentioned in step 4.1)
Post
https://flipkart-integration-prod.el.r.appspot.com/_ah/api/esb/v1/webhookCreateOrder/listener
Event Received:
{
"eventType": "shipment_created",
"source": "flipkart",
"version": "v3",
"locationId" : "LOC1234",
"timestamp": "2017-03-28T18:03:01+05:30",
"attributes": {
"dispatchByDate": "2017-04-10T10:00:00.000+05:30",
"dispatchAfterDate": "2017-04-06T18:21:25.000+05:30",
"updatedAt": "2017-04-06T18:17:01.000+05:30",
"hold": false,
"mps": false,
"subShipments": [{
"subShipmentId": "SS-1",
"packages": []
}],
"packagingPolicy": "GREEN_PACKAGE",
"orderItems": [{
"orderItemId": "1883380307363600",
"orderId": "OD108833803073636000",
"cancellationGroupId": "grp1883380307363600",
"orderDate": "2017-04-06T18:15:57.000+05:30",
"paymentType": "COD",
"status": "APPROVED",
"quantity": 1,
"fsn": "DIAE777EDCWNZSPZ",
"sku": "LKA041150",
"listingId": "LSTDIAE777EDCWNZSPZQMLAT0",
"hsn": null,
"title": "Lokalart Pocket-size Journal Yellow LKA041150",
"packageIds": [],
"priceComponents": {
"sellingPrice": 295.0,
"totalPrice": 295.0,
"shippingCharge": 0.0,
"customerPrice": 295.0,
"flipkartDiscount": 0.0
},
"is_replacement": false
}],
"forms": [{
"name": "GJ_403",
"link": "http://www.commercialtax.gujarat.gov.in/",
"automated": true
}],
"dispatchLocation": null
},
"shipmentId": "dc455f0e-b2f2-473a-9731-360ffbb23348"
}
Step 6: will Fetch the locationId
from the Event and using the locationId I will fetch OtherDetails from DataBase:
SELECT * From channels WHERE channels.locationId = :locationId
Step 7: will combine details fetch from Database and the details fetch from ShipmentCreated Event Given By Flipkart in a Single Map and Publish that to the Middle layer to create Order in Eshopox System through PubSub
Pubsub Sample Event
{
"queueData": {
"channelData": {
"externalChannelId": "CH5811",
"accountSlug": "montecarlo",
"connectionId": 78,
"location": {
"F21BD": "Warehouse",
"58291912872": "Warehouse"
},
"wmsAccessToken": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IlJVVXdSREZCUVRSRFFqQkdORFUxTVVZeE16ZEdPRFJHTnpORk5EaEJSVEU0TVVORk5qVTJOdyJ9.eyJodHRwczovL2FwcERhdGEiOnsiYXBwQ2xpZW50SWQiOiI3YmM0ZTExYTdlMzFmYWRjMTk5ZDI5Y2ViZTIyYzY3MiJ9LCJodHRwczovL2FjY291bnRTbHVnIjoibW9udGVjYXJsbyIsImh0dHBzOi8vdXNlckRldGFpbHMiOnsiaWQiOjExMzEsInVzZXJUeXBlIjoiZGVmYXVsdCIsImVtYWlsIjoiYXBwdXNlcjExNEBlc2hvcGJveC5jb20ifSwiaHR0cHM6Ly9hY2NvdW50cyI6WyJtb250ZWNhcmxvIl0sImh0dHBzOi8vd2FyZWhvdXNlV29ya3NwYWNlcyI6W10sImh0dHBzOi8vd2FyZWhvdXNlcyI6W10sImh0dHBzOi8vcGFydG5lcnMiOltdLCJpc3MiOiJodHRwczovL2VzaG9wYm94LXBheW1lbnQtcmVjby5hdXRoMC5jb20vIiwic3ViIjoiYXV0aDB8NjA3NTQxMmE2NjUwOGYwMDY4YmIzZTQwIiwiYXVkIjoiaHR0cHM6Ly9lc2hvcGJveC1wb3J0YWwtZGV2LmFwcHNwb3QuY29tIiwiaWF0IjoxNjU3MDEzNjM3LCJleHAiOjE2NTk2MDU2MzcsImF6cCI6Inc4dllYa2ZMSWZmOFl2Mmo0TzNUOUplYWoxUzNxOHJlIiwic2NvcGUiOiJyZWFkOnByb2R1Y3RzIHJlYWQ6aW52ZW50b3J5IHJlYWQ6cHJvZHVjdF9saXN0aW5ncyIsImd0eSI6InBhc3N3b3JkIn0.n3b_xeFb4Hutay0h-6Pu-m_6netxymzt_AAw9G7OAjYUY8obqsVLFDG_qIPj2z2OS0-W5f1hUNxy82tfHrsG-_Nxy39rUoXNXLTWg7QQtDbF6OVJmYW55QmdIf5QU8Z7vpE2z9FeQ4QL6x6jDsTzLuBteJdu49AL34W0OcKcOOOhrjnui1phoB1Glc3AbNMwXSBQncq9MLeeu6J_8-THyXZLSAaxHZiH3AwJoJXcrN4EQLQhCN9rVAX1wuxATCNIHrlapfIngr7-tFZ0ffYccEaFdWNlrKeOyQVZccieneC4w7FCXlPr16VVsCJBsKYLVoDnXKmEH1mcAhA6ARI-UQ"
},
"order": {
"eventType": "shipment_created",
"source": "flipkart",
"version": "v3",
"locationId": "LOC1234",
"timestamp": "2017-03-28T18:03:01+05:30",
"attributes": {
"dispatchByDate": "2017-04-10T10:00:00.000+05:30",
"dispatchAfterDate": "2017-04-06T18:21:25.000+05:30",
"updatedAt": "2017-04-06T18:17:01.000+05:30",
"hold": false,
"mps": false,
"subShipments": [
{
"subShipmentId": "SS-1",
"packages": []
}
],
"packagingPolicy": "GREEN_PACKAGE",
"orderItems": [
{
"orderItemId": "1883380307363600",
"orderId": "OD108833803073636000",
"cancellationGroupId": "grp1883380307363600",
"orderDate": "2017-04-06T18:15:57.000+05:30",
"paymentType": "COD",
"status": "APPROVED",
"quantity": 1,
"fsn": "DIAE777EDCWNZSPZ",
"sku": "LKA041150",
"listingId": "LSTDIAE777EDCWNZSPZQMLAT0",
"hsn": null,
"title": "Lokalart Pocket-size Journal Yellow LKA041150",
"packageIds": [],
"priceComponents": {
"sellingPrice": 295.0,
"totalPrice": 295.0,
"shippingCharge": 0.0,
"customerPrice": 295.0,
"flipkartDiscount": 0.0
},
"is_replacement": false
}
],
"forms": [
{
"name": "GJ_403",
"link": "http://www.commercialtax.gujarat.gov.in/",
"automated": true
}
],
"dispatchLocation": null
},
"shipmentId": "dc455f0e-b2f2-473a-9731-360ffbb23348"
}
}