Sign in

Update catalog image

documented

Uploads a new image for a catalog image (Beta).

PUT /v2/catalog/images/{image_id}Commerceno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://connect.squareup.com/v2/catalog/images/{{$image_id}}" \
  -X PUT \
  -H "Square-Version: 2026-01-22" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Accept: application/json" \
  -F "file=@{{$image_file_path}}" \
  -F 'request={
    "idempotency_key": "{{$idempotency_key}}",
    "object_id": "{{$object_id}}",
    "image": {
      "type": "IMAGE",
      "image_data": {
        "name": "{{$image_name}}",
        "caption": "{{$image_caption}}"
      }
    }
  }'"
Update catalog image · Square · OpenIntegrations