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": []
}
}]
}
}{
"status": "success",
"status_code": 200,
"data": {
"id": 40636,
"posted_by": "MEMBER",
"posted_at": "2024-11-25 16:59:16",
"booking_code": null,
"type": "product",
"receipt_number": "RD9501012024112500000033",
"total_point": 23000,
"total_lucky_draw_point": 0,
"total_amount": 23000,
"voided_by": null,
"voided_at": null,
"note": "82170672377",
"updated_at": "2024-12-04 13:17:04",
"store": null,
"details": [
{
"id": 31621,
"total_point": 23000,
"total_lucky_draw_point": 0,
"total_amount": 23000,
"quantity": 1,
"serial_number": "0123-4567-8901-2345-6789/PTLOYALMEMBERINDONESIA/R1/000001300/66.2",
"created_at": "2024-11-25 16:59:16",
"updated_at": "2024-12-04 13:17:04",
"product": {
"id": 1351,
"code": "MPHPLN20000",
"name": "Token Listrik PLN 20.000",
"source": "External",
"period": {
"start": "2024-10-09",
"end": "2024-12-31"
},
"price": 23000,
"point": 23000,
"lucky_draw_point": 0,
"stock": 0,
"type": "ppob",
"limit": null,
"note": null,
"terms": "-",
"instructions": null,
"active": true,
"images": [
"https://storagedev.loyal.id/listrikpintar.jpeg"
],
"is_all_stores": false
}
}
]
}
}{
"status": "error",
"status_code": 422,
"message": "Client not found.",
"errors": [
"Client not found."
]
}Last updated