---
title: "Update Business Profile"
method: PATCH
path: "/api/v1/business-profile"
tags: ["business-profiles"]
---

# Update Business Profile

`PATCH /api/v1/business-profile`

Update the current user's business profile. 404 if none exists.

## Request body

- BusinessProfileUpdate — Update an existing business profile. All fields optional.
  - `company_name` string, nullable
  - `tax_id` string, nullable
  - `billing_email` string, nullable
  - `billing_address` string, nullable
  - `shipping_address` string, nullable
  - `payment_terms` string, nullable
  - `tax_exempt_cert_r2_key` string, nullable

## Response `200`

Successful Response

- AppSchemasBusinessProfileBusinessProfileResponse — User-facing business profile response.
  - `id` string, uuid, required
  - `user_id` string, uuid, required
  - `company_name` string, required
  - `tax_id` string, nullable
  - `billing_email` string, nullable
  - `billing_address` string, required
  - `shipping_address` string, required
  - `payment_terms` string, required
  - `credit_limit` string, nullable
  - `is_tax_exempt` boolean
  - `tax_exempt_cert_r2_key` string, nullable
  - `is_approved_for_po` boolean, required
  - `po_approval_date` string, date-time, nullable
  - `approved_by` string, nullable
  - `notes` string, nullable
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/prototyping/apis/prototyping-io-api.md) · [All operations](https://skmtc.dev/prototyping/apis/prototyping-io-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/prototyping/prototyping-io-api/revisions/f4a0079fbb57/schema)
