From d5d8fbab16553c3477ee48aefb6284fd45ded964 Mon Sep 17 00:00:00 2001 From: gaureshpai Date: Thu, 2 Apr 2026 11:22:53 +0530 Subject: [PATCH] fix(docs): omit deprecated checkout id from playground payload Removes checkoutResponse.id from the update payload in playground.md. This field is marked as deprecated_required_to_omit for update requests (as the ID is now passed in the URL path). It was previously only commented as deprecated without actually removing the property from the payload object. --- docs/specification/playground.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/specification/playground.md b/docs/specification/playground.md index 5eaee942..08db1d15 100644 --- a/docs/specification/playground.md +++ b/docs/specification/playground.md @@ -990,7 +990,7 @@ class UcpApp { } prepareUpdatePayload(checkoutResponse) { - const patch = { id: checkoutResponse.id }; // deprecated: id is provided in URL path + const patch = {}; // id is provided in URL path const errors = checkoutResponse.messages || []; if (errors.some(e => e.path === "$.buyer.email")) {