Update redemption transaction status
Endpoint to update the status of an existing Redemption Order based on incoming payload data.
Request Provide your bearer token in the Authorization
header when making requests to protected resources. Example: Authorization: Bearer ********************
Body Params application/json Required
{
"transactionId" : "ORD202507013831" ,
"statusId" : "695dcc370ab8622381f27918"
} Request Code Samples
curl --location --request PUT 'https://integration.returning.ai/apis/v1/redemption-transactions/status' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"transactionId": "ORD202507013831",
"statusId": "695dcc370ab8622381f27918"
}' Responses application/json Generate Code
{
"status" : "success" ,
"message" : "Transaction status updated successfully" ,
"data" : {
"transactionId" : "ORD20260102ffc6" ,
"statusId" : "695e2f8b3358520a2ecf86e4" ,
"status" : {
"_id" : "695e2f8b3358520a2ecf86e4" ,
"name" : "Shipping" ,
"category" : "incomplete" ,
"color" : "#3EA1FD"
}
}
} Modified at 2026-01-09 02:20:15