-
Notifications
You must be signed in to change notification settings - Fork 8
Sale_Ship
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
###ship
Use to mark a sale as shipped. (This will settle an auth-only sale)
####Arguments
- object - Object containing sale parameters. Parameters -> API Mark Shipped
- callback - Function to be called on success/error
####Returns
Result Object
####Example Usage:
args = {
sale_id: "4774380224",
tracking_number: "test"
};
tco.sales.ship(args, function (error, data) {
if (error) {
console.log(error);
} else {
console.log(data.response_code);
}
});
####Example Response:
{
"response_code": "OK",
"response_message": "Sale marked shipped."
}
Please feel free to contact 2Checkout directly for assistance with your integration.