Skip to main content
PATCH
https://api.nedzo.ai/v1
/
v1
/
workspaces
/
{id}
curl -X PATCH "https://api.nedzo.ai/v1/workspaces/19c3b12f-ec54-43ad-8686-00e921f1befd" \
    -H "Authorization: Bearer YOUR_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "name": "Acme Corporation",
      "description": "Main workspace for Acme Corp operations",
      "timezone": "America/Los_Angeles",
      "icon": "https://example.com/acme-icon.png",
      "contactName": "Jane Smith",
      "contactPhone": "+1234567890",
      "contactEmail": "[email protected]",
      "streetAddress": "123 Main Street",
      "state": "CA",
      "zip": "90210",
      "country": "US",
      "businessRegistrationNumber": "12-3456789"
    }'
{
  "id": "19c3b12f-ec54-43ad-8686-00e921f1befd",
  "accountId": "789e4567-e89b-12d3-a456-426614174000",
  "name": "Acme Corporation",
  "description": "Main workspace for Acme Corp operations",
  "timezone": "America/Los_Angeles",
  "icon": "https://example.com/acme-icon.png",
  "contactName": "Jane Smith",
  "contactPhone": "+1234567890",
  "contactEmail": "[email protected]",
  "streetAddress": "123 Main Street",
  "state": "CA",
  "zip": "90210",
  "country": "US",
  "businessRegistrationNumber": "12-3456789",
  "balance": 0,
  "createdAt": "2024-01-15T10:30:00Z",
  "updatedAt": "2024-01-15T11:00:00Z"
}
id
string
required
Workspace UUID
name
string
Workspace name (1-255 characters)
description
string
Workspace description (max 1000 characters)
timezone
string
IANA timezone identifier (e.g., “America/Los_Angeles”, “Europe/London”)
icon
string
Workspace icon URL
contactName
string
Primary contact name
contactPhone
string
Primary contact phone number
contactEmail
string
Primary contact email address
streetAddress
string
Street address
state
string
State or province
zip
string
ZIP or postal code
country
string
Country code or name
businessRegistrationNumber
string
Business registration number (EIN, VAT, etc.)
curl -X PATCH "https://api.nedzo.ai/v1/workspaces/19c3b12f-ec54-43ad-8686-00e921f1befd" \
    -H "Authorization: Bearer YOUR_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "name": "Acme Corporation",
      "description": "Main workspace for Acme Corp operations",
      "timezone": "America/Los_Angeles",
      "icon": "https://example.com/acme-icon.png",
      "contactName": "Jane Smith",
      "contactPhone": "+1234567890",
      "contactEmail": "[email protected]",
      "streetAddress": "123 Main Street",
      "state": "CA",
      "zip": "90210",
      "country": "US",
      "businessRegistrationNumber": "12-3456789"
    }'
{
  "id": "19c3b12f-ec54-43ad-8686-00e921f1befd",
  "accountId": "789e4567-e89b-12d3-a456-426614174000",
  "name": "Acme Corporation",
  "description": "Main workspace for Acme Corp operations",
  "timezone": "America/Los_Angeles",
  "icon": "https://example.com/acme-icon.png",
  "contactName": "Jane Smith",
  "contactPhone": "+1234567890",
  "contactEmail": "[email protected]",
  "streetAddress": "123 Main Street",
  "state": "CA",
  "zip": "90210",
  "country": "US",
  "businessRegistrationNumber": "12-3456789",
  "balance": 0,
  "createdAt": "2024-01-15T10:30:00Z",
  "updatedAt": "2024-01-15T11:00:00Z"
}