Skip to main content
PUT
/
workspace
/
{workspace_id}
/
settings
Update workspace settings
curl --request PUT \
  --url https://api.firma.dev/functions/v1/signing-request-api/workspace/{workspace_id}/settings \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "email_header": "<string>",
  "email_body": "<string>",
  "team_email": "jsmith@example.com",
  "timezone": "<string>"
}'
{
  "workspace_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "email_header": "<string>",
  "email_body": "<string>",
  "team_email": "jsmith@example.com",
  "timezone": "<string>"
}

Authorizations

Authorization
string
header
required

API key for authentication. Use your API key directly without any prefix (e.g., 'your-api-key'). Bearer prefix is optional but not required.

Path Parameters

workspace_id
string<uuid>
required

Body

application/json
email_header
string
email_body
string
team_email
string<email>
timezone
string

Response

Workspace settings updated successfully

workspace_id
string<uuid>
email_header
string

Custom email header text

email_body
string

Custom HTML email body

team_email
string<email>

Workspace contact email

timezone
string

Workspace timezone

I