-
Notifications
You must be signed in to change notification settings - Fork 8
Sale_Refund
Jacob McConnell edited this page Jun 10, 2014
·
1 revision
You must specify your API username and password when creating your 2checkout-node object (named ‘tco’ in these examples) before calling this method.
##Method
###refund
Use to issue a refund on a sale, invoice or lineitem.
####Arguments
- object - Object containing refund invoice or refund lineitem parameters. Parameters -> API Refund Invoice || API Refund Lineitem
- callback - Function to be called on success/error
####Returns
Result Object
####Example Usage:
args = {
sale_id: "4774380224",
comment: "test",
category: "5"
};
tco.sales.refund(args, function (error, data) {
if (error) {
console.log(error);
} else {
console.log(data.response_code);
}
});####Example Response:
{
"response_code": "OK",
"response_message": "refund added to invoice"
}Please feel free to contact 2Checkout directly for assistance with your integration.