Skip to content

Sale_Reauth

Jacob McConnell edited this page Jun 11, 2014 · 2 revisions

You must specify your API username and password when creating your 2checkout-node object (named ‘tco’ in these examples) before calling this method.

##Method

###reauth

Use to reauthorize a sale.

####Arguments

  • object - Object containing Reauth parameters. Parameters -> API Reauth
  • callback - Function to be called on success/error

####Returns

Result Object

####Example Usage:

args = {
    sale_id: "4774380224"
};

tco.sales.reauth(args, function (error, data) {
    if (error) {
        console.log(error);
    } else {
        console.log(data.response_code);
    }
});

####Example Response:

{
    "response_code": "OK",
    "response_message": "Payment reauthorized."
}

Clone this wiki locally