headers = {"content-type": "application/x-www-form-urlencoded"}
data = {"client_id": self.id,
"client_secret": self.secret,
"grant_type": "authtooauth",
"authtoken": authToken,
"soid": "ZohoBooks." + self.organisation,
"scope": "ZohoBooks.contacts.UPDATE,ZohoBooks.contacts.READ"}
resp = self.session.post(
"https://accounts.zoho.com/oauth/v2/token/external/authtooauth",
data=data, headers=headers)