Swipelux
Business Customers

Business Address

Update the registered business address

Provide the registered business address for compliance verification.

PATCH /v1/businesses/:id/address

Request Example

PATCH https://wallet.swipelux.com/v1/businesses/biz_cK69MttD5nAUAbud1B/address
Content-Type: application/json
X-API-Key: your_api_key
 
{
  "addressCountry": "DE",
  "streetAddress": "Hauptstraße 123",
  "city": "Berlin",
  "state": "Berlin",
  "zip": "10115"
}

Request Fields

FieldTypeRequiredDescription
addressCountrystringYesCountry code (ISO 3166-1 alpha-2)
streetAddressstringYesStreet address and building number
addressLine2stringNoAdditional address line (suite, floor, etc.)
citystringYesCity name
statestringNoState/province/region
zipstringYesPostal/ZIP code

Address Requirements

  • Must be the registered business address (not a PO box)
  • Should match the address on incorporation documents
  • For multi-national businesses, provide the primary registered office address

Response

{
  "id": "biz_cK69MttD5nAUAbud1B",
  "legalName": "Acme Investment GmbH",
  "status": "incomplete",
  "address": {
    "addressCountry": "DE",
    "streetAddress": "Hauptstraße 123",
    "city": "Berlin",
    "state": "Berlin",
    "zip": "10115"
  },
  "updatedAt": "2025-10-17T15:45:00Z"
}

Next Steps

On this page