curl --location --request GET 'http://localhost:8000/api/v1/physical-transfer/1' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "Berhasil mengambil data transfer fisik",
"data": {
"id": 24,
"origin_store": {
"id": 1,
"name": "Store One"
},
"destination_store": {
"id": 2,
"name": "SiBakul Mbak Ve"
},
"status": "NOT_SEND",
"created_at": "2025-12-20T02:11:14.000000Z",
"created_by": {
"id": 3,
"name": "Admin Store"
},
"transfer_products": [
{
"id": 47,
"product_id": 3,
"product_batch_id": 202,
"product": {
"id": 3,
"sku": "BJ01",
"name": "Bolu pisang"
},
"batch": {
"id": 202,
"batch_code": "BCH-251222-7157"
},
"expire_date": "2025-10-26 00:00:00",
"price_buy": "4000.00",
"qty": 5
}
]
}
}