Redeem Detail

The Redeem Detail feature provides detailed information about a selected redemption process. It allows users to view all relevant data, including the status, amount, and any other associated details of the specific redemption process.

Get Redeem Detail

GET /customer/transaction/redeem/{id}/detail

Get the transaction detail of the redeem type.

Headers

Name
Value

Accept

application/json

Authorization

Bearer <token>

Params

Name
Type
Description

client_code

string

client identifier

customer_id

number

ID of the customers

Response

{
	"status": "success",
	"status_code": 200,
	"data": {
		"id": 1,
		"posted_by": "globaladmin",
		"posted_at": "2018-08-27 17:41:26",
		"booking_code": null,
		"type": "product",
		"receipt_number": "RD\/18\/00000001",
		"total_point": 10,
		"total_amount": 10,
		"voided_by": "admin",
		"voided_at": "2018-08-28 14:33:57",
		"note": "note",
		"updated_at": "2018-08-28 14:33:57",
		"store": null,
		"details": [{
			"id": 1,
			"total_point": 10,
			"total_amount": 10,
			"quantity": 10,
			"serial_number": null,
			"created_at": "2018-08-27 17:41:26",
			"updated_at": "2018-08-27 17:41:26",
			"product": {
				"id": 1,
				"code": "0001",
				"name": "Product 1",
				"period": {
					"start": "2018-08-27",
					"end": "2019-08-27"
				},
				"price": 1,
				"point": 1,
				"stock": 1000000,
				"type": "product",
				"limit": null,
				"note": null,
				"active": true,
				"images": []
			}
		}]
	}
}

Last updated