PUT
/
shipping-addresses
/
{id}
curl --request PUT \
  --url https://api.buybase.ai/shipping-addresses/{id} \
  --header 'Content-Type: application/json' \
  --header 'authorization: <authorization>' \
  --data '{
  "shipping_address": {
    "first_name": "<string>",
    "last_name": "<string>",
    "email": "<string>",
    "phone": "<string>",
    "address_1": "<string>",
    "address_2": "<string>",
    "city": "<string>",
    "country_code": "<string>",
    "province_code": "<string>",
    "postal_code": "<string>"
  }
}'
{
  "success": true,
  "shipping": {
    "id": "ship_12345",
    "first_name": "John",
    "last_name": "Smith",
    "email": "john.smith@example.com",
    "phone": "+1234567890",
    "address_1": "456 Park Ave",
    "address_2": "Suite 789",
    "city": "New York",
    "country_code": "US",
    "province_code": "NY",
    "postal_code": "10022",
    "profile_id": "prof_67890",
    "updated_at": "2023-09-16T10:15:22Z"
  },
  "id": "ship_12345",
  "code": "SHIPPING_UPDATED"
}

Headers

authorization
string
required

Your API key for authorization.

Path Parameters

id
string
required

The ID of the shipping address to update.

Body Parameters

shipping_address
object
required

Response

success
boolean

Indicates whether the operation was successful.

shipping
object

The updated shipping address object containing:

code
string

A code indicating the result of the operation. Possible values:

  • SHIPPING_UPDATED: Shipping address updated successfully
  • SHIPPING_UPDATE_FAILED: Failed to update shipping address
error
string

Error message if the request fails.

When updating a shipping address, you need to provide the complete shipping address object with all fields, even those that haven’t changed.

{
  "success": true,
  "shipping": {
    "id": "ship_12345",
    "first_name": "John",
    "last_name": "Smith",
    "email": "john.smith@example.com",
    "phone": "+1234567890",
    "address_1": "456 Park Ave",
    "address_2": "Suite 789",
    "city": "New York",
    "country_code": "US",
    "province_code": "NY",
    "postal_code": "10022",
    "profile_id": "prof_67890",
    "updated_at": "2023-09-16T10:15:22Z"
  },
  "id": "ship_12345",
  "code": "SHIPPING_UPDATED"
}