Automate RFPs and Security Questionnaires
In this example, we'll review the steps to automatically fill out a security questionnaire or RFP using the Answer API. This example assumes you have a security questionnaire or RFP in a Google Sheet.
Step 1: Create Bot
Create a new bot called "RFP Responder" and grant it access to the appropriate knowledge sources. This could be a specific Google Drive folder where you have stored previously completed RFPs or questionnaires, your product wiki, or the help center.
Add Instructions about anything you want the bot to know when responding to the questions. For instance:
Your job is respond to questions from an RFP by one of our propsects. Follow all best practices for completing RFPs when responding. Just say "I don't know" if you don't know the answer. Use plaintext in your response, no markdown/HTML/rich text.
Open the bot modal again and click the "Copy Bot ID" button on the top right. This will be used to make the API requests in Step 3.
Step 2: Get API Key
Create a new API token from here or get an existing one. This will also be used to make the API requests.
Step 3: Paste Apps Script
Open the spreadsheet and click on
Extensions -> Apps Script
from the toolbar.Paste the script below in the Apps Script and add the
BOT_ID
from Step 1 in Row 34 andAPI_KEY
from Step 2 in Row 30. If necessary, update the sheet name in Row 4, the questions column in Row 7, and the answer column in Row 19.That's it, click "Run" to start! Dashworks will go over each question one by one and add an answer to the spreadsheet.
Last updated