{
  "info": {
    "name": "Ecomiq UCP API 1.0.0",
    "description": "Universal Commerce Protocol endpoints for AI-agent commerce flows.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "apikey",
    "apikey": [
      {
        "key": "key",
        "value": "X-API-Key",
        "type": "string"
      },
      {
        "key": "value",
        "value": "{{apiKey}}",
        "type": "string"
      },
      {
        "key": "in",
        "value": "header",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://ucp.ecomiq.pe",
      "type": "string"
    },
    {
      "key": "accessToken",
      "value": "",
      "type": "string"
    },
    {
      "key": "storeDomain",
      "value": "my-store",
      "type": "string"
    },
    {
      "key": "ucpAgentProfile",
      "value": "https://agent.example/.well-known/ucp",
      "type": "string"
    },
    {
      "key": "idempotencyKey",
      "value": "checkout-2026-0001",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "Agent Commerce",
      "item": [
        {
          "name": "Get chat gpt agent profile",
          "description": "Operation ID: GetChatGptAgentProfile",
          "request": {
            "method": "GET",
            "auth": {
              "type": "noauth"
            },
            "description": "Operation ID: GetChatGptAgentProfile\n\nGet chat gpt agent profile. A successful request returns HTTP 200 with the documented response body.",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/.well-known/agents/chatgpt",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                ".well-known",
                "agents",
                "chatgpt"
              ],
              "query": [],
              "variable": []
            }
          }
        },
        {
          "name": "Get UCP profile",
          "description": "Operation ID: GetUcpProfile",
          "request": {
            "method": "GET",
            "auth": {
              "type": "noauth"
            },
            "description": "Operation ID: GetUcpProfile\n\nGet UCP profile. A successful request returns HTTP 200 with the documented response body.",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/.well-known/ucp",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                ".well-known",
                "ucp"
              ],
              "query": [],
              "variable": []
            }
          }
        },
        {
          "name": "UCP create cart",
          "description": "Operation ID: UcpCreateCart",
          "request": {
            "method": "POST",
            "description": "Operation ID: UcpCreateCart\n\nUCP create cart. A successful request returns HTTP 201 with the documented response body.",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer <token>",
                "description": "OAuth 2.0 bearer token.",
                "disabled": false
              },
              {
                "key": "x-Store-Domain",
                "value": "{{storeDomain}}",
                "description": "Store slug or configured domain that selects the UCP store context.",
                "disabled": false
              },
              {
                "key": "UCP-Agent",
                "value": "profile=\"{{ucpAgentProfile}}\"",
                "description": "Agent profile binding in the form profile=\"https://agent.example/.well-known/ucp\".",
                "disabled": false
              },
              {
                "key": "Idempotency-Key",
                "value": "{{idempotencyKey}}",
                "description": "Optional idempotency key for retry-safe UCP requests.",
                "disabled": true
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/ucp/carts",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "ucp",
                "carts"
              ],
              "query": [],
              "variable": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"line_items\": [\n    {\n      \"item\": {\n        \"id\": \"7204558912004325301\",\n        \"title\": \"Example title\",\n        \"price\": 1,\n        \"quantity_unit\": {\n          \"unit\": \"example\",\n          \"display_text\": \"example\",\n          \"scale\": 1,\n          \"increment\": 1\n        },\n        \"unit_price\": {\n          \"amount\": 1,\n          \"currency\": \"PEN\",\n          \"measure\": {\n            \"value\": 1,\n            \"unit\": \"example\",\n            \"display_text\": \"example\",\n            \"scale\": 1\n          },\n          \"reference\": {\n            \"value\": 1,\n            \"unit\": \"example\",\n            \"display_text\": \"example\",\n            \"scale\": 1\n          }\n        },\n        \"image_url\": \"https://example.com/resource\"\n      },\n      \"quantity\": 1,\n      \"id\": \"7204558912004325301\",\n      \"totals\": [\n        {\n          \"type\": \"example\",\n          \"amount\": 1,\n          \"display_text\": \"example\",\n          \"lines\": [\n            {\n              \"display_text\": \"example\",\n              \"amount\": 1\n            }\n          ]\n        }\n      ],\n      \"parent_id\": \"7204558912004325301\"\n    }\n  ],\n  \"context\": {\n    \"currency\": \"PEN\",\n    \"address_country\": \"example\",\n    \"address_region\": \"example\",\n    \"postal_code\": \"example_code\",\n    \"intent\": \"example\",\n    \"language\": \"es\",\n    \"eligibility\": [\n      \"example\"\n    ]\n  },\n  \"signals\": {\n    \"dev.ucp.buyer_ip\": \"example\",\n    \"dev.ucp.user_agent\": \"example\"\n  },\n  \"attribution\": {},\n  \"buyer\": {\n    \"first_name\": \"Example resource\",\n    \"last_name\": \"Example resource\",\n    \"email\": \"andrea@example.com\",\n    \"phone_number\": \"+51987654321\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "UCP get cart",
          "description": "Operation ID: UcpGetCart",
          "request": {
            "method": "GET",
            "description": "Operation ID: UcpGetCart\n\nUCP get cart. A successful request returns HTTP 200 with the documented response body.",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer <token>",
                "description": "OAuth 2.0 bearer token.",
                "disabled": false
              },
              {
                "key": "x-Store-Domain",
                "value": "{{storeDomain}}",
                "description": "Store slug or configured domain that selects the UCP store context.",
                "disabled": false
              },
              {
                "key": "UCP-Agent",
                "value": "profile=\"{{ucpAgentProfile}}\"",
                "description": "Agent profile binding in the form profile=\"https://agent.example/.well-known/ucp\".",
                "disabled": false
              },
              {
                "key": "Idempotency-Key",
                "value": "{{idempotencyKey}}",
                "description": "Optional idempotency key for retry-safe UCP requests.",
                "disabled": true
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/ucp/carts/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "ucp",
                "carts",
                ":id"
              ],
              "query": [],
              "variable": [
                {
                  "key": "id",
                  "value": "7204558912004325301",
                  "description": "Unique identifier of the resource."
                }
              ]
            }
          }
        },
        {
          "name": "UCP update cart",
          "description": "Operation ID: UcpUpdateCart",
          "request": {
            "method": "PUT",
            "description": "Operation ID: UcpUpdateCart\n\nUCP update cart. A successful request returns HTTP 200 with the documented response body.",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer <token>",
                "description": "OAuth 2.0 bearer token.",
                "disabled": false
              },
              {
                "key": "x-Store-Domain",
                "value": "{{storeDomain}}",
                "description": "Store slug or configured domain that selects the UCP store context.",
                "disabled": false
              },
              {
                "key": "UCP-Agent",
                "value": "profile=\"{{ucpAgentProfile}}\"",
                "description": "Agent profile binding in the form profile=\"https://agent.example/.well-known/ucp\".",
                "disabled": false
              },
              {
                "key": "Idempotency-Key",
                "value": "{{idempotencyKey}}",
                "description": "Optional idempotency key for retry-safe UCP requests.",
                "disabled": true
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/ucp/carts/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "ucp",
                "carts",
                ":id"
              ],
              "query": [],
              "variable": [
                {
                  "key": "id",
                  "value": "7204558912004325301",
                  "description": "Unique identifier of the resource."
                }
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"line_items\": [\n    {\n      \"item\": {\n        \"id\": \"7204558912004325301\",\n        \"title\": \"Example title\",\n        \"price\": 1,\n        \"quantity_unit\": {\n          \"unit\": \"example\",\n          \"display_text\": \"example\",\n          \"scale\": 1,\n          \"increment\": 1\n        },\n        \"unit_price\": {\n          \"amount\": 1,\n          \"currency\": \"PEN\",\n          \"measure\": {\n            \"value\": 1,\n            \"unit\": \"example\",\n            \"display_text\": \"example\",\n            \"scale\": 1\n          },\n          \"reference\": {\n            \"value\": 1,\n            \"unit\": \"example\",\n            \"display_text\": \"example\",\n            \"scale\": 1\n          }\n        },\n        \"image_url\": \"https://example.com/resource\"\n      },\n      \"quantity\": 1,\n      \"id\": \"7204558912004325301\",\n      \"totals\": [\n        {\n          \"type\": \"example\",\n          \"amount\": 1,\n          \"display_text\": \"example\",\n          \"lines\": [\n            {\n              \"display_text\": \"example\",\n              \"amount\": 1\n            }\n          ]\n        }\n      ],\n      \"parent_id\": \"7204558912004325301\"\n    }\n  ],\n  \"context\": {\n    \"currency\": \"PEN\",\n    \"address_country\": \"example\",\n    \"address_region\": \"example\",\n    \"postal_code\": \"example_code\",\n    \"intent\": \"example\",\n    \"language\": \"es\",\n    \"eligibility\": [\n      \"example\"\n    ]\n  },\n  \"signals\": {\n    \"dev.ucp.buyer_ip\": \"example\",\n    \"dev.ucp.user_agent\": \"example\"\n  },\n  \"attribution\": {},\n  \"buyer\": {\n    \"first_name\": \"Example resource\",\n    \"last_name\": \"Example resource\",\n    \"email\": \"andrea@example.com\",\n    \"phone_number\": \"+51987654321\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "UCP cancel cart",
          "description": "Operation ID: UcpCancelCart",
          "request": {
            "method": "POST",
            "description": "Operation ID: UcpCancelCart\n\nUCP cancel cart. A successful request returns HTTP 200 with the documented response body.",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer <token>",
                "description": "OAuth 2.0 bearer token.",
                "disabled": false
              },
              {
                "key": "x-Store-Domain",
                "value": "{{storeDomain}}",
                "description": "Store slug or configured domain that selects the UCP store context.",
                "disabled": false
              },
              {
                "key": "UCP-Agent",
                "value": "profile=\"{{ucpAgentProfile}}\"",
                "description": "Agent profile binding in the form profile=\"https://agent.example/.well-known/ucp\".",
                "disabled": false
              },
              {
                "key": "Idempotency-Key",
                "value": "{{idempotencyKey}}",
                "description": "Optional idempotency key for retry-safe UCP requests.",
                "disabled": true
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/ucp/carts/{id}/cancel",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "ucp",
                "carts",
                ":id",
                "cancel"
              ],
              "query": [],
              "variable": [
                {
                  "key": "id",
                  "value": "7204558912004325301",
                  "description": "Unique identifier of the resource."
                }
              ]
            }
          }
        },
        {
          "name": "UCP lookup catalog",
          "description": "Operation ID: UcpLookupCatalog",
          "request": {
            "method": "POST",
            "description": "Operation ID: UcpLookupCatalog\n\nUCP lookup catalog. A successful request returns HTTP 200 with the documented response body.",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer <token>",
                "description": "OAuth 2.0 bearer token.",
                "disabled": false
              },
              {
                "key": "x-Store-Domain",
                "value": "{{storeDomain}}",
                "description": "Store slug or configured domain that selects the UCP store context.",
                "disabled": false
              },
              {
                "key": "UCP-Agent",
                "value": "profile=\"{{ucpAgentProfile}}\"",
                "description": "Agent profile binding in the form profile=\"https://agent.example/.well-known/ucp\".",
                "disabled": false
              },
              {
                "key": "Idempotency-Key",
                "value": "{{idempotencyKey}}",
                "description": "Optional idempotency key for retry-safe UCP requests.",
                "disabled": true
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/ucp/catalog/lookup",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "ucp",
                "catalog",
                "lookup"
              ],
              "query": [],
              "variable": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"ids\": [\n    \"example\"\n  ],\n  \"filters\": {\n    \"categories\": [\n      \"example\"\n    ],\n    \"price\": {\n      \"min\": 1,\n      \"max\": 1\n    }\n  },\n  \"context\": {\n    \"currency\": \"PEN\",\n    \"address_country\": \"example\",\n    \"address_region\": \"example\",\n    \"postal_code\": \"example_code\",\n    \"intent\": \"example\",\n    \"language\": \"es\",\n    \"eligibility\": [\n      \"example\"\n    ]\n  },\n  \"signals\": {\n    \"dev.ucp.buyer_ip\": \"example\",\n    \"dev.ucp.user_agent\": \"example\"\n  },\n  \"attribution\": {}\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "UCP get catalog product",
          "description": "Operation ID: UcpGetCatalogProduct",
          "request": {
            "method": "POST",
            "description": "Operation ID: UcpGetCatalogProduct\n\nUCP get catalog product. A successful request returns HTTP 200 with the documented response body.",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer <token>",
                "description": "OAuth 2.0 bearer token.",
                "disabled": false
              },
              {
                "key": "x-Store-Domain",
                "value": "{{storeDomain}}",
                "description": "Store slug or configured domain that selects the UCP store context.",
                "disabled": false
              },
              {
                "key": "UCP-Agent",
                "value": "profile=\"{{ucpAgentProfile}}\"",
                "description": "Agent profile binding in the form profile=\"https://agent.example/.well-known/ucp\".",
                "disabled": false
              },
              {
                "key": "Idempotency-Key",
                "value": "{{idempotencyKey}}",
                "description": "Optional idempotency key for retry-safe UCP requests.",
                "disabled": true
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/ucp/catalog/product",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "ucp",
                "catalog",
                "product"
              ],
              "query": [],
              "variable": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"id\": \"7204558912004325301\",\n  \"selected\": [\n    {\n      \"name\": \"Example resource\",\n      \"label\": \"example\",\n      \"id\": \"7204558912004325301\"\n    }\n  ],\n  \"preferences\": [\n    \"example\"\n  ],\n  \"filters\": {\n    \"categories\": [\n      \"example\"\n    ],\n    \"price\": {\n      \"min\": 1,\n      \"max\": 1\n    }\n  },\n  \"context\": {\n    \"currency\": \"PEN\",\n    \"address_country\": \"example\",\n    \"address_region\": \"example\",\n    \"postal_code\": \"example_code\",\n    \"intent\": \"example\",\n    \"language\": \"es\",\n    \"eligibility\": [\n      \"example\"\n    ]\n  },\n  \"signals\": {\n    \"dev.ucp.buyer_ip\": \"example\",\n    \"dev.ucp.user_agent\": \"example\"\n  },\n  \"attribution\": {}\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "UCP search catalog",
          "description": "Operation ID: UcpSearchCatalog",
          "request": {
            "method": "POST",
            "description": "Operation ID: UcpSearchCatalog\n\nUCP search catalog. A successful request returns HTTP 200 with the documented response body.",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer <token>",
                "description": "OAuth 2.0 bearer token.",
                "disabled": false
              },
              {
                "key": "x-Store-Domain",
                "value": "{{storeDomain}}",
                "description": "Store slug or configured domain that selects the UCP store context.",
                "disabled": false
              },
              {
                "key": "UCP-Agent",
                "value": "profile=\"{{ucpAgentProfile}}\"",
                "description": "Agent profile binding in the form profile=\"https://agent.example/.well-known/ucp\".",
                "disabled": false
              },
              {
                "key": "Idempotency-Key",
                "value": "{{idempotencyKey}}",
                "description": "Optional idempotency key for retry-safe UCP requests.",
                "disabled": true
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/ucp/catalog/search",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "ucp",
                "catalog",
                "search"
              ],
              "query": [],
              "variable": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"query\": \"polo de algodón\",\n  \"context\": {\n    \"currency\": \"PEN\",\n    \"address_country\": \"PE\",\n    \"language\": \"es\"\n  },\n  \"pagination\": {\n    \"limit\": 10\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "UCP create checkout",
          "description": "Operation ID: UcpCreateCheckout",
          "request": {
            "method": "POST",
            "description": "Operation ID: UcpCreateCheckout\n\nUCP create checkout. A successful request returns HTTP 201 with the documented response body.",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer <token>",
                "description": "OAuth 2.0 bearer token.",
                "disabled": false
              },
              {
                "key": "x-Store-Domain",
                "value": "{{storeDomain}}",
                "description": "Store slug or configured domain that selects the UCP store context.",
                "disabled": false
              },
              {
                "key": "UCP-Agent",
                "value": "profile=\"{{ucpAgentProfile}}\"",
                "description": "Agent profile binding in the form profile=\"https://agent.example/.well-known/ucp\".",
                "disabled": false
              },
              {
                "key": "Idempotency-Key",
                "value": "{{idempotencyKey}}",
                "description": "Optional idempotency key for retry-safe UCP requests.",
                "disabled": true
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/ucp/checkout-sessions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "ucp",
                "checkout-sessions"
              ],
              "query": [],
              "variable": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"line_items\": [\n    {\n      \"item\": {\n        \"id\": \"7204558912004325301\",\n        \"title\": \"Example title\",\n        \"price\": 1,\n        \"quantity_unit\": {\n          \"unit\": \"example\",\n          \"display_text\": \"example\",\n          \"scale\": 1,\n          \"increment\": 1\n        },\n        \"unit_price\": {\n          \"amount\": 1,\n          \"currency\": \"PEN\",\n          \"measure\": {\n            \"value\": 1,\n            \"unit\": \"example\",\n            \"display_text\": \"example\",\n            \"scale\": 1\n          },\n          \"reference\": {\n            \"value\": 1,\n            \"unit\": \"example\",\n            \"display_text\": \"example\",\n            \"scale\": 1\n          }\n        },\n        \"image_url\": \"https://example.com/resource\"\n      },\n      \"quantity\": 1,\n      \"id\": \"7204558912004325301\",\n      \"totals\": [\n        {\n          \"type\": \"example\",\n          \"amount\": 1,\n          \"display_text\": \"example\",\n          \"lines\": [\n            {\n              \"display_text\": \"example\",\n              \"amount\": 1\n            }\n          ]\n        }\n      ],\n      \"parent_id\": \"7204558912004325301\"\n    }\n  ],\n  \"cart_id\": \"7204558912004325301\",\n  \"buyer\": {\n    \"first_name\": \"Example resource\",\n    \"last_name\": \"Example resource\",\n    \"email\": \"andrea@example.com\",\n    \"phone_number\": \"+51987654321\"\n  },\n  \"context\": {\n    \"currency\": \"PEN\",\n    \"address_country\": \"example\",\n    \"address_region\": \"example\",\n    \"postal_code\": \"example_code\",\n    \"intent\": \"example\",\n    \"language\": \"es\",\n    \"eligibility\": [\n      \"example\"\n    ]\n  },\n  \"signals\": {\n    \"dev.ucp.buyer_ip\": \"example\",\n    \"dev.ucp.user_agent\": \"example\"\n  },\n  \"attribution\": {},\n  \"payment\": {\n    \"instruments\": [\n      {\n        \"id\": \"7204558912004325301\",\n        \"handler_id\": \"7204558912004325301\",\n        \"type\": \"example\",\n        \"selected\": false,\n        \"billing_address\": {},\n        \"credential\": {},\n        \"display\": {}\n      }\n    ]\n  },\n  \"fulfillment\": {\n    \"methods\": [\n      {\n        \"id\": \"7204558912004325301\",\n        \"type\": \"example\",\n        \"line_item_ids\": [\n          \"example\"\n        ],\n        \"destinations\": [\n          {\n            \"id\": \"7204558912004325301\",\n            \"type\": \"example\",\n            \"name\": \"Example resource\",\n            \"address\": {\n              \"extended_address\": \"example\",\n              \"street_address\": \"example\",\n              \"address_locality\": \"example\",\n              \"address_region\": \"example\",\n              \"address_country\": \"example\",\n              \"postal_code\": \"example_code\",\n              \"first_name\": \"Example resource\",\n              \"last_name\": \"Example resource\"\n            },\n            \"extended_address\": \"example\",\n            \"street_address\": \"example\",\n            \"address_locality\": \"example\",\n            \"address_region\": \"example\"\n          }\n        ],\n        \"selected_destination_id\": \"7204558912004325301\",\n        \"groups\": [\n          {\n            \"id\": \"7204558912004325301\",\n            \"line_item_ids\": [\n              \"example\"\n            ],\n            \"options\": [\n              {\n                \"id\": \"7204558912004325301\",\n                \"title\": \"Example title\",\n                \"description\": {\n                  \"plain\": \"example\",\n                  \"html\": \"example\",\n                  \"markdown\": \"example\"\n                },\n                \"carrier\": \"example\",\n                \"earliest_fulfillment_time\": \"example\",\n                \"latest_fulfillment_time\": \"example\",\n                \"totals\": [\n                  {\n                    \"type\": \"example\",\n                    \"amount\": 1,\n                    \"display_text\": \"example\",\n                    \"lines\": [\n                      {\n                        \"display_text\": \"example\",\n                        \"amount\": 1\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"selected_option_id\": \"7204558912004325301\"\n          }\n        ]\n      }\n    ],\n    \"available_methods\": [\n      {\n        \"type\": \"example\",\n        \"line_item_ids\": [\n          \"example\"\n        ],\n        \"fulfillable_on\": \"example\",\n        \"description\": \"Example description.\"\n      }\n    ]\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "UCP get checkout",
          "description": "Operation ID: UcpGetCheckout",
          "request": {
            "method": "GET",
            "description": "Operation ID: UcpGetCheckout\n\nUCP get checkout. A successful request returns HTTP 200 with the documented response body.",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer <token>",
                "description": "OAuth 2.0 bearer token.",
                "disabled": false
              },
              {
                "key": "x-Store-Domain",
                "value": "{{storeDomain}}",
                "description": "Store slug or configured domain that selects the UCP store context.",
                "disabled": false
              },
              {
                "key": "UCP-Agent",
                "value": "profile=\"{{ucpAgentProfile}}\"",
                "description": "Agent profile binding in the form profile=\"https://agent.example/.well-known/ucp\".",
                "disabled": false
              },
              {
                "key": "Idempotency-Key",
                "value": "{{idempotencyKey}}",
                "description": "Optional idempotency key for retry-safe UCP requests.",
                "disabled": true
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/ucp/checkout-sessions/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "ucp",
                "checkout-sessions",
                ":id"
              ],
              "query": [],
              "variable": [
                {
                  "key": "id",
                  "value": "7204558912004325301",
                  "description": "Unique identifier of the resource."
                }
              ]
            }
          }
        },
        {
          "name": "UCP update checkout",
          "description": "Operation ID: UcpUpdateCheckout",
          "request": {
            "method": "PUT",
            "description": "Operation ID: UcpUpdateCheckout\n\nUCP update checkout. A successful request returns HTTP 200 with the documented response body.",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer <token>",
                "description": "OAuth 2.0 bearer token.",
                "disabled": false
              },
              {
                "key": "x-Store-Domain",
                "value": "{{storeDomain}}",
                "description": "Store slug or configured domain that selects the UCP store context.",
                "disabled": false
              },
              {
                "key": "UCP-Agent",
                "value": "profile=\"{{ucpAgentProfile}}\"",
                "description": "Agent profile binding in the form profile=\"https://agent.example/.well-known/ucp\".",
                "disabled": false
              },
              {
                "key": "Idempotency-Key",
                "value": "{{idempotencyKey}}",
                "description": "Optional idempotency key for retry-safe UCP requests.",
                "disabled": true
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/ucp/checkout-sessions/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "ucp",
                "checkout-sessions",
                ":id"
              ],
              "query": [],
              "variable": [
                {
                  "key": "id",
                  "value": "7204558912004325301",
                  "description": "Unique identifier of the resource."
                }
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"line_items\": [\n    {\n      \"item\": {\n        \"id\": \"7204558912004325301\",\n        \"title\": \"Example title\",\n        \"price\": 1,\n        \"quantity_unit\": {\n          \"unit\": \"example\",\n          \"display_text\": \"example\",\n          \"scale\": 1,\n          \"increment\": 1\n        },\n        \"unit_price\": {\n          \"amount\": 1,\n          \"currency\": \"PEN\",\n          \"measure\": {\n            \"value\": 1,\n            \"unit\": \"example\",\n            \"display_text\": \"example\",\n            \"scale\": 1\n          },\n          \"reference\": {\n            \"value\": 1,\n            \"unit\": \"example\",\n            \"display_text\": \"example\",\n            \"scale\": 1\n          }\n        },\n        \"image_url\": \"https://example.com/resource\"\n      },\n      \"quantity\": 1,\n      \"id\": \"7204558912004325301\",\n      \"totals\": [\n        {\n          \"type\": \"example\",\n          \"amount\": 1,\n          \"display_text\": \"example\",\n          \"lines\": [\n            {\n              \"display_text\": \"example\",\n              \"amount\": 1\n            }\n          ]\n        }\n      ],\n      \"parent_id\": \"7204558912004325301\"\n    }\n  ],\n  \"buyer\": {\n    \"first_name\": \"Example resource\",\n    \"last_name\": \"Example resource\",\n    \"email\": \"andrea@example.com\",\n    \"phone_number\": \"+51987654321\"\n  },\n  \"context\": {\n    \"currency\": \"PEN\",\n    \"address_country\": \"example\",\n    \"address_region\": \"example\",\n    \"postal_code\": \"example_code\",\n    \"intent\": \"example\",\n    \"language\": \"es\",\n    \"eligibility\": [\n      \"example\"\n    ]\n  },\n  \"signals\": {\n    \"dev.ucp.buyer_ip\": \"example\",\n    \"dev.ucp.user_agent\": \"example\"\n  },\n  \"attribution\": {},\n  \"payment\": {\n    \"instruments\": [\n      {\n        \"id\": \"7204558912004325301\",\n        \"handler_id\": \"7204558912004325301\",\n        \"type\": \"example\",\n        \"selected\": false,\n        \"billing_address\": {},\n        \"credential\": {},\n        \"display\": {}\n      }\n    ]\n  },\n  \"fulfillment\": {\n    \"methods\": [\n      {\n        \"id\": \"7204558912004325301\",\n        \"type\": \"example\",\n        \"line_item_ids\": [\n          \"example\"\n        ],\n        \"destinations\": [\n          {\n            \"id\": \"7204558912004325301\",\n            \"type\": \"example\",\n            \"name\": \"Example resource\",\n            \"address\": {\n              \"extended_address\": \"example\",\n              \"street_address\": \"example\",\n              \"address_locality\": \"example\",\n              \"address_region\": \"example\",\n              \"address_country\": \"example\",\n              \"postal_code\": \"example_code\",\n              \"first_name\": \"Example resource\",\n              \"last_name\": \"Example resource\"\n            },\n            \"extended_address\": \"example\",\n            \"street_address\": \"example\",\n            \"address_locality\": \"example\",\n            \"address_region\": \"example\"\n          }\n        ],\n        \"selected_destination_id\": \"7204558912004325301\",\n        \"groups\": [\n          {\n            \"id\": \"7204558912004325301\",\n            \"line_item_ids\": [\n              \"example\"\n            ],\n            \"options\": [\n              {\n                \"id\": \"7204558912004325301\",\n                \"title\": \"Example title\",\n                \"description\": {\n                  \"plain\": \"example\",\n                  \"html\": \"example\",\n                  \"markdown\": \"example\"\n                },\n                \"carrier\": \"example\",\n                \"earliest_fulfillment_time\": \"example\",\n                \"latest_fulfillment_time\": \"example\",\n                \"totals\": [\n                  {\n                    \"type\": \"example\",\n                    \"amount\": 1,\n                    \"display_text\": \"example\",\n                    \"lines\": [\n                      {\n                        \"display_text\": \"example\",\n                        \"amount\": 1\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"selected_option_id\": \"7204558912004325301\"\n          }\n        ]\n      }\n    ],\n    \"available_methods\": [\n      {\n        \"type\": \"example\",\n        \"line_item_ids\": [\n          \"example\"\n        ],\n        \"fulfillable_on\": \"example\",\n        \"description\": \"Example description.\"\n      }\n    ]\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "UCP cancel checkout",
          "description": "Operation ID: UcpCancelCheckout",
          "request": {
            "method": "POST",
            "description": "Operation ID: UcpCancelCheckout\n\nUCP cancel checkout. A successful request returns HTTP 200 with the documented response body.",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer <token>",
                "description": "OAuth 2.0 bearer token.",
                "disabled": false
              },
              {
                "key": "x-Store-Domain",
                "value": "{{storeDomain}}",
                "description": "Store slug or configured domain that selects the UCP store context.",
                "disabled": false
              },
              {
                "key": "UCP-Agent",
                "value": "profile=\"{{ucpAgentProfile}}\"",
                "description": "Agent profile binding in the form profile=\"https://agent.example/.well-known/ucp\".",
                "disabled": false
              },
              {
                "key": "Idempotency-Key",
                "value": "{{idempotencyKey}}",
                "description": "Optional idempotency key for retry-safe UCP requests.",
                "disabled": true
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/ucp/checkout-sessions/{id}/cancel",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "ucp",
                "checkout-sessions",
                ":id",
                "cancel"
              ],
              "query": [],
              "variable": [
                {
                  "key": "id",
                  "value": "7204558912004325301",
                  "description": "Unique identifier of the resource."
                }
              ]
            }
          }
        },
        {
          "name": "UCP complete checkout",
          "description": "Operation ID: UcpCompleteCheckout",
          "request": {
            "method": "POST",
            "description": "Operation ID: UcpCompleteCheckout\n\nUCP complete checkout. A successful request returns HTTP 200 with the documented response body.",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer <token>",
                "description": "OAuth 2.0 bearer token.",
                "disabled": false
              },
              {
                "key": "x-Store-Domain",
                "value": "{{storeDomain}}",
                "description": "Store slug or configured domain that selects the UCP store context.",
                "disabled": false
              },
              {
                "key": "UCP-Agent",
                "value": "profile=\"{{ucpAgentProfile}}\"",
                "description": "Agent profile binding in the form profile=\"https://agent.example/.well-known/ucp\".",
                "disabled": false
              },
              {
                "key": "Idempotency-Key",
                "value": "{{idempotencyKey}}",
                "description": "Optional idempotency key for retry-safe UCP requests.",
                "disabled": true
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/ucp/checkout-sessions/{id}/complete",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "ucp",
                "checkout-sessions",
                ":id",
                "complete"
              ],
              "query": [],
              "variable": [
                {
                  "key": "id",
                  "value": "7204558912004325301",
                  "description": "Unique identifier of the resource."
                }
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"payment\": {\n    \"instruments\": [\n      {\n        \"id\": \"7204558912004325301\",\n        \"handler_id\": \"7204558912004325301\",\n        \"type\": \"example\",\n        \"selected\": false,\n        \"billing_address\": {},\n        \"credential\": {},\n        \"display\": {}\n      }\n    ]\n  },\n  \"signals\": {\n    \"dev.ucp.buyer_ip\": \"example\",\n    \"dev.ucp.user_agent\": \"example\"\n  },\n  \"attribution\": {}\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "UCP get order",
          "description": "Operation ID: UcpGetOrder",
          "request": {
            "method": "GET",
            "description": "Operation ID: UcpGetOrder\n\nUCP get order. A successful request returns HTTP 200 with the documented response body.",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer <token>",
                "description": "OAuth 2.0 bearer token.",
                "disabled": false
              },
              {
                "key": "x-Store-Domain",
                "value": "{{storeDomain}}",
                "description": "Store slug or configured domain that selects the UCP store context.",
                "disabled": false
              },
              {
                "key": "UCP-Agent",
                "value": "profile=\"{{ucpAgentProfile}}\"",
                "description": "Agent profile binding in the form profile=\"https://agent.example/.well-known/ucp\".",
                "disabled": false
              },
              {
                "key": "Idempotency-Key",
                "value": "{{idempotencyKey}}",
                "description": "Optional idempotency key for retry-safe UCP requests.",
                "disabled": true
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/ucp/orders/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "ucp",
                "orders",
                ":id"
              ],
              "query": [],
              "variable": [
                {
                  "key": "id",
                  "value": "7204558912004325301",
                  "description": "Unique identifier of the resource."
                }
              ]
            }
          }
        }
      ]
    }
  ]
}