vinayaka
vinayaka

Reputation: 39

Access data from Google sheets in DialogFlow's index.JS

I am very new to DialogFlow.
I need to access data from one of my google sheet . How can I achieve this by coding in inbuilt Index.JS provided by DialogFlow

Upvotes: 1

Views: 211

Answers (1)

Prisoner
Prisoner

Reputation: 50701

In your index.js, you'll need to setup Intent handlers for each Intent.

In those handlers, you can get the parameters from the Intent and then make calls to the Sheets API to get data based on those parameters.

Upvotes: 1

Related Questions