Merchant Transaction API - Async Response

This APIs helps you to provide the transactions of merchant.

{
   "status":200,
   "data":{
      "message":"We are successfully able fetch transitions for merchant",
      "method":"GET",
      "api":"/v2/data/ecommerce/merchant/transaction”
      "job_id": "KVWJUrwQ78333309",  
      "count":{{"Obejcts in transaction item"}},
      "transaction_item":[
         {
            "transaction_id":"64123141583481",
            "status":"order completed",
            "last_status_update_time":"2021-01-13T02:45:04.000+00:00",
            "count":2,
            "item_details":[
               {
                  "item_name":"abc",
                  "price_per_item":19500,
                  "quantity":1,
                  "buyer_name":"HD Official Shop"
               },
               {
                  "item_name":"asssdff",
                  "price_per_item":19500,
                  "quantity":1,
                  "buyer_name":"HD Official Shop"
               }
            ],
            "total_transaction_amount":2,
            "total_transaction_price_amount":39000
         }
      ]
   },
   "metadata":{
      "source":{{API/Widget/Dashboard/SDK/Portal}},
      "entity":"Data"
   },
   "error":null
}

Response Parameters

Key ParametersData TypeDescription
transaction_item-transactionIdStringUnique identifier of the transaction
transaction_item-statusStringLatest status of the transaction
transaction_item-last_status_update_timeStringThe time when the latest status has been updated
transaction_item-item_details-item_nameStringDetail name of the item
transaction_item-item_details-price_per_itemIntegerPrice for each item
transaction_item-item_details-quantityIntegerQuantity of the particular item bought by the user
transaction_item-item_details-buyer_nameStringName of the buyer
total_transaction_amountIntegerTotal quantity of item bought by the user
total_transaction_price_amountIntegerTotal amount paid by the user