The RefundAPI is an API that allows clients to automate the refund process for their customers. This API enables the client to refund the customer's points and update it without any manual intervention. The API has to be built by the client so Xoxoday can consume it.

๐Ÿ“˜

The request and response are for illustrative purposes and to help the client refer to a skeleton that Xoxoday deems acceptable.

๐Ÿšง

Note: Please ensure that you share your response in JSON format only, as our system does not support any other data types.

Headers

  1. application/JSON

Request

{
"auth_token" : "123xyz", //client's api token provided at the time of SSO
"transactionid" : "AB1890082790",
"redemption_amount" : "200"
}

Schema

ParametersDescription
unique_idUnique identifier of a user
auth_tokenAn authorisation value to successfully allow the request from Xoxoday to your system. This value is to be sent by the client during SSO redirection
transactionidOrderID of the order
redemption_amountPoints/Amount used by the end-user

Response

{
"status":"1",
"message": "Successfully updated",
"data" : {
"transaction_id" : "123",
"points" : "200"
				}
}

Schema

ParametersDescription
status1 = Successful 0 = Failure
messageIndicates the APIs success/failure
data.transaction_idOrderID of the voucher
data.pointsPoints refunded