//native
type Square = {
token: string;
};
/**
* CloneOrder
* Creates a new order, in the `DRAFT` state, by duplicating an existing order. The newly created order has
only the core fields (such as line items, taxes, and discounts) copied from the original order.
*/
export async function main(
auth: Square,
body: { order_id: string; version?: number; idempotency_key?: string },
) {
const url = new URL(`https://connect.squareup.com/v2/orders/clone`);
const response = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: "Bearer " + auth.token,
},
body: JSON.stringify(body),
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 235 days ago