Requirements for risk score
Tables to be made:
Pincode rto score
This table will save the daily packed shipments count and RTO shipment counts of a particular drop pincode
Table name : pincode_rto_score
Columns -
id
drop_pincode
total_packed_shipments
total_rto
total_cir
created_at
updated_at
ODA table
This table will contains ODA drop pincodes.
Table name : oda_pincode_mapping
Columns(TBD)
Customer Fraudelent History(Open Point)
This table will contains details of those customers who
had earlier rejected the shipments and had cancelled via OTP/IVR verification multiple times
Customer had seized the shipment earlier, wanted open delivery.
Customer had high returns % (Returns/Delivered)
APIs to be made
POST RISK_SCORE API
API Path: _ah/api/esb/v1/risk/order-create-listener
Http method POST
Query Params:
{
"resource": "order",
"eventType": "POST",
"eventSubType": "created",
"accountSlug": "tab",
"accountId": null,
"actor": "SYSTEM",
"version": "v1",
"request_data": [],
"response_data": {
"id": 44176830,
"externalChannelID": "CH5865",
"channelLabel": "Bigbasket new",
"integrationType": "4",
"customerOrderNumber": "Series73",
"vendorOrderNumber": "Series73",
"shipMethod": "STD",
"orderDate": "2023-03-29 08:07:13",
"expectedShipDate": null,
"dispatchAfterDate": null,
"promiseDeliveryDate": null,
"isCOD": "0",
"paymentType": "prepaid",
"orderSiteID": null,
"taxAmount": 0,
"shipChargeAmount": 25,
"subtotal": 950,
"orderTotal": 975,
"balanceDue": 0,
"thirdPartyShipping": false,
"onHold": false,
"created_at": "2023-03-29 13:37:15",
"updated_at": "2023-03-29 13:37:15",
"shippingAddress": {
"customerName": "anup",
"addressLine1": "Hsidc Maruti Indl Area",
"addressLine2": null,
"city": "south west delhi",
"state": "DELHI",
"postalCode": "110022",
"countryCode": "IN",
"countryName": "IN",
"contactPhone": "9650000000",
"email": "johndoe@test.com"
},
"billingAddress": {
"customerName": "anup",
"addressLine1": "Hsidc Maruti Indl Area",
"addressLine2": null,
"city": "Delhi",
"state": "Delhi",
"postalCode": "110761",
"countryCode": "IN",
"countryName": "IN",
"contactPhone": "9650000000",
"email": "johndoe@test.com"
},
"items": [
{
"lineItemSequenceNumber": 1,
"orderItemID": "Series73-23924311",
"itemID": "ImportTest1",
"sku": "T1U973FNPT3",
"productName": "Multi color jersey tee",
"quantity": 1,
"customerPrice": 1000,
"discount": 50,
"lineItemTotal": 950,
"taxRate": 0,
"taxAmount": 0,
"giftMessage": "Happy Birthday.",
"giftLabelContent": "",
"cancellationReason": "",
"cancellationTime": "0000-00-00 00:00:00",
"original_order_item_id": null
}
],
"expectedDeliveryDate": null
},
"previous_data": [],
"resource_type": "order.create",
"account_slug": "tab",
"custom": []
}
POST RISK_SCORE API
API Path: _ah/api/esb/v1/risk/order-verification
Http method POST
Query Params:
{ "externalChannelID": "CH1299", "customerOrderNumber": "4571602911385", "externalShipmentId": "4571602911385-1299-0547", "shippingAddress": { "city": "Churcha colliery", "countryCode": "IN", "postalCode": "497339", "addressLine1": "Shreya poultry farm, Ward number 06", "addressLine2": "East nepal gate, Near balaji beauty parlour", "countryName": "INDIA", "state": "Chandigarh", "contactPhone": "9131786078", "customerName": "Anamika Dad", "email": "nomailprovided@gmail.com" }, "integrationType": "7", "items": [ { "itemID": "44372319699097", "sku": "24QGK3H1ZV5", "externalWarehouseID": "Gurgaon_FC", "quantity": 1, "outOfStock": "false" } ] }
RTO score cron
API path : _ah/api/esb/v1/risk/rto-score
Http method GET
Working of RTO score cron
Cron will hit at time 't' where t is every day at 11:59 PM
With the current time - 24hrs fetch total packed shipment of that day grouped by drop pincode
SELECT orders.shipping_postalCode, COUNT(DISTINCT shipments.id) FROM orders LEFT JOIN shipments ON orders.id = shipments.order_id LEFT JOIN shipment_status_logs ON shipments.id = shipment_status_logs.shipment_id WHERE shipment_status_logs.status = 'packed' AND shipment_status_logs.created_at >='2022-11-21 15:42:00' GROUP BY orders.shipping_postalCode
Query to fetch total rto shipment
SELECT orders.shipping_postalCode, COUNT(DISTINCT shipments.id) FROM orders LEFT JOIN shipments ON orders.id = shipments.order_id LEFT JOIN shipment_status_logs ON shipments.id = shipment_status_logs.shipment_id WHERE shipment_status_logs.status = 'rto' AND shipment_status_logs.created_at >='2022-11-21 15:42:00' GROUP BY orders.shipping_postalCode
Update total packed shipments, total rto shipments by adding previous values of pincode_rto_score to the total count of present day
UPDATE pincode_rto_score SET total_packed_shipments = total_packed_shipments+(today's count) , total_rto = total_rto +(today's rto count) WHERE drop_pincode = '110005';