Returns True or False based on the validity of the token
HOST = "https://industrial.api.ubidots.com"
PATH = "/api/v1.6/user_check/"
PARAMETERS = "?token={}".format(token)
URL = "{}{}{}".format(HOST, PATH, PARAMETERS)
token = args.get("token", None)
return {"ERROR": "Missing token"}
valid = account_auth(token)
return {"ERROR": "Token not valid"}