> ## Documentation Index
> Fetch the complete documentation index at: https://dev.puppetvendors.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Update My Vendor Address

> Update the authenticated vendor's own address

<Note>
  **V2 Preview** — This endpoint is part of the V2 API preview. Breaking changes may occur.
</Note>

## Overview

Update the authenticated vendor's own business address. Requires a vendor-scoped token.

## Request Body

<ParamField body="address1" type="string">Street address line 1.</ParamField>
<ParamField body="address2" type="string">Street address line 2.</ParamField>

<ParamField body="city" type="string" />

<ParamField body="state" type="string" />

<ParamField body="postalCode" type="string" />

<ParamField body="country" type="string" />

## Response

```json 200 theme={null}
{ "success": true, "data": { /* updated address */ } }
```

## Example

```bash theme={null}
curl -X PUT "https://staging-api.puppetvendors.com/vendors/me/address" \
  -H "x-access-token: YOUR_VENDOR_JWT" \
  -H "Content-Type: application/json" \
  -d '{
    "address1": "456 Oak Ave",
    "city": "Austin",
    "state": "TX",
    "postalCode": "78702",
    "country": "US"
  }'
```
