Activity Logs - Edit Connection
New Endpoint to save activity Logs :
This url will be called by task queue to save the activity logs in db.
URL : Http Post Request
/connection/activity-logs
Request Body :
{
"appInstallationId": 111,
"connectionId": 1234,
"action": "Enable Location",
"description": "XYZ enabled Eshopbox Mumbai (CMUM) for Flipkart Raymond",
"additionalInfo" : "Default tax code: ESBGST1 - Create new products enabled for no-match",
"emailId": "abc@gmail.com"
}
Db Design :
id | appInstallationId | connectionId | action | description | emailId | additionalInfo | created_at | updated_at |
---|---|---|---|---|---|---|---|---|
bigint(20) | int(11) | int(11) | var(255) | text | varchar(255) | text | timestamp | timestamp |
1 | 111 | 1234
| Catalog Sync | XYZ turned on Catalog sync for Flipkart Raymond | Default tax code: ESBGST1 - Create new products enabled for no-match |
|
|
appInstallationId and connectionId fields can be null as per the case.
Cases for which activity is to be logged :
Automation Steps Change And Product Sync Step Change :
URL :
appinstall/config/toggle
Request Body :
{
"data": [
{
"id": 7673,
"appAutomationStepId": 137,
"appId": 564,
"connectionId": 3729,
"isActive": "1",
"appInstallationId": 910,
"latestSyncTimeStamp": "2023-09-21 18:15:30",
"stepTitle": "Sync inventory levels",
"stepDescription": "Update Nykaa inventory quantities for inventory level changes in Eshopbox",
"isRequired": "0",
"contentFulEntryId": "4BQzCCf34eQONNmiyhl2In",
"tooltipText": "You will not be able to turn off the sync inventory levels automation. If you wish to stop selling on Nykaa, make your products unavailable on Nykaa and disconnect the Nykaa app on Eshopbox",
"createdAt": "2023-09-13 11:32:31",
"updatedAt": "2023-09-21 18:15:30"
},
{
"id": 7674,
"appAutomationStepId": 138,
"appId": 564,
"connectionId": 3729,
"isActive": "0",
"appInstallationId": 910,
"latestSyncTimeStamp": "0000-00-00 00:00:00",
"stepTitle": "Create new orders",
"stepDescription": "Create Eshopbox orders for new orders in Nykaa",
"isRequired": "0",
"contentFulEntryId": "2aqsvZXoGKuZfRG8eEP42d",
"tooltipText": "You will not be able to turn off the create orders automation.To stop accepting orders, please make all your products unavailable on Nykaa",
"createdAt": "2023-09-13 11:32:31",
"updatedAt": "2023-09-13 11:32:31"
},
{
"id": 7675,
"appAutomationStepId": 139,
"appId": 564,
"connectionId": 3729,
"isActive": "1",
"appInstallationId": 910,
"latestSyncTimeStamp": "0000-00-00 00:00:00",
"stepTitle": "Cancel orders",
"stepDescription": "Cancel Eshopbox order when order is cancelled in Nykaa",
"isRequired": "0",
"contentFulEntryId": "35OEH99ZKBPWWDQoTGzHPx",
"tooltipText": "This automation is mandatory for Nykaa",
"createdAt": "2023-09-13 11:32:31",
"updatedAt": "2023-09-13 11:32:31"
},
{
"id": 7677,
"appAutomationStepId": 149,
"appId": 564,
"connectionId": 3729,
"isActive": "1",
"appInstallationId": 910,
"latestSyncTimeStamp": "2023-10-20 17:01:27",
"stepTitle": "Create returns",
"stepDescription": "Mark the order as returning, when return is created on Nykaa.",
"isRequired": "0",
"contentFulEntryId": "47V8EZh2y6B54g3uFvx3x6",
"createdAt": "2023-09-13 11:32:31",
"updatedAt": "2023-10-20 17:01:32"
}
]
}
Step 1 : get automation steps from db for connection id and then compare the request body and data from db to know which step is being edited.
Step 2 : Then after updating the active state in db for connection id, call endpoint “/connection/activity-logs“ using task queue.
Enable/Disable/Edit Location Activity Log :
URL :
connection/channel/{channelId}
Case 1 : Enable Location Request Body :
{
"fulfillmentChannels": [
{
"warehouseId": 897,
"locationId": "MPTESTP"
}
]
}
When an event is being published for create channel , call endpoint “/connection/activity-logs“ using task queue.
Case 2 : Disable Location Request Body :
{
"fulfillmentChannels": [
{
"warehouseId": 1276,
"locationId": "MPTESTC1",
"enrollmentStatus": "ARCHIVE_REQUESTED"
}
]
}
An event is being published while when “isArchiveRequested” = true, at that time we will log activity in db. Call endpoint “/connection/activity-logs“ using task queue.
Case 3 : Enable existing location Request Body :
{
"fulfillmentChannels": [
{
"warehouseId": 1329,
"locationId": "MPTESTP"
}
],
"id": "6090"
}
Same as case 2.
Logs while disconnecting/deleting connection :
URL :
appinstall/connection/{id}
Delete Connection Request Body :
{"isActive":"archived","id":"3467"}
Disconnect Request Body :
{"isActive":"inactive","id":"3467"}
When status is saved in db, then call endpoint “/connection/activity-logs“ using task queue.
App Uninstall :
URL :
/appinstall/{installationId}
When status is saved in db, then call endpoint “/connection/activity-logs“ using task queue. .