CRM V3 Api

CRM V3 Api

Hey Zoho Team,

I've setup my client through the Zoho Api Console, obtained valid access tokens using the scope 'ZohoCRM.modules.ALL,ZohoCRM.settings.fields.ALL', and when I make a call to fetch deals:

``` 
      method: 'GET',
      headers: {
        Authorization: `Zoho-oauthtoken ${zohoCredential.accessToken}`,
        scope: 'ZohoCRM.modules.ALL,ZohoCRM.settings.fields.ALL'
      }
    })
```
I'm getting a 401 unauthorized. What am I missing?