async function verifyCreated(response) { const body = await response.json(); if (typeof body.id !== "string") { throw new Error("missing order id"); } return true; }