diff --git a/google-server-api.cabal b/google-server-api.cabal
--- a/google-server-api.cabal
+++ b/google-server-api.cabal
@@ -5,7 +5,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           google-server-api
-version:        0.4.0.2
+version:        0.4.1.0
 synopsis:       Google APIs for server to server applications
 description:    This library provides a way to use Google API for server to server applications.
 category:       Web
diff --git a/src/Google/JWT.hs b/src/Google/JWT.hs
--- a/src/Google/JWT.hs
+++ b/src/Google/JWT.hs
@@ -82,6 +82,7 @@
   | ScopeGmailSend
   | ScopeDriveFile
   | ScopeDriveMetadataRead
+  | ScopeSpreadsheets
   deriving (Eq, Show, Read, Ord)
 
 {-| Make sure if you added new scope, update configuration in page bellow.
@@ -94,6 +95,7 @@
 scopeUrl ScopeGmailFull = "https://www.googleapis.com/auth/gmail"
 scopeUrl ScopeDriveFile = "https://www.googleapis.com/auth/drive.file"
 scopeUrl ScopeDriveMetadataRead = "https://www.googleapis.com/auth/drive.metadata.readonly"
+scopeUrl ScopeSpreadsheets = "https://www.googleapis.com/auth/spreadsheets"
 
 -- | Get the private key obtained from the
 -- Google API Console from a PEM 'String'.
