Localization

Time zone

Configure time zones for deliverables at the account or envelope level

The timezone property sets the time zone used for timestamps in the deliverable’s audit log. It must be a valid IANA Time Zone Database identifier (for example, America/New_York or Europe/London).

If not specified, the account’s default time zone is used. Set your account default in the Settings section of the dashboard.

Setting the time zone for an envelope

// POST https://api.signatureapi.com/v1/envelopes
// X-API-Key: key_test_...
// Content-Type: application/json

{
  "title": "Service Agreement",
  "timezone": "Europe/London",
  "documents": [
    //...
  ],
  "recipients": [
    //...
  ]
}

Common identifiers

IdentifierRegion
America/New_YorkUS East Coast
America/Los_AngelesUS West Coast
America/ChicagoUS Central
Europe/LondonUnited Kingdom
Europe/ParisCentral Europe
Asia/SingaporeSingapore
Australia/SydneyEastern Australia
Use named identifiers (like America/New_York) rather than fixed offsets (like Etc/GMT+5). Named identifiers handle daylight saving changes automatically.