Undo Item To Bag
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"item_code": "string",
"transaction_id": "string",
"order_id": "string"
}
Request Code Samples
curl --location --request POST 'http://petfen-account.local.com:8081/api/v1/user-bag/undo-item' \
--header 'X-Auth-Service: Bearer ' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"item_code": "string",
"transaction_id": "string",
"order_id": "string"
}'
Responses
application/json {
"error": {
"code": 500,
"message": "Lỗi hệ thống",
"errors": null
}
}
Modified at 2025-06-16 09:34:15