Back

Dover Assistant
Description
Generate a personalized email to someone you're interested in reaching out to for a job opportunity.
Details
https://outreach-plugin.dover.io/.well-known/ai-plugin.json
{
"schema_version": "v1",
"name_for_human": "Dover Assistant",
"name_for_model": "dover_outreach",
"description_for_human": "Generate a personalized email to someone you're interested in reaching out to for a job opportunity.",
"description_for_model": "Tool for generating an email to someone you're interested in reaching out to for a job opportunity.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://outreach-plugin.dover.io/openapi.yaml",
"is_user_authenticated": false
},
"logo_url": "https://outreach-plugin.dover.io/logo.png",
"contact_email": "hello@dover.com",
"legal_info_url": "https://www.dover.com/subscription-agreement"
}
https://outreach-plugin.dover.io/openapi.yaml
openapi: 3.0.1
info:
title: Dover Assistant
description: Tool for generating an email to someone you're interested in reaching out to for a job opportunity.
version: 'v1'
servers:
- url: https://outreach-plugin.dover.io
paths:
/generate-email:
post:
operationId: generateEmail
summary: Generate an outbound recruiting email
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/generateEmailRequest'
responses:
"200":
description: Generated email
components:
schemas:
generateEmailRequest:
type: object
required:
- profileLink
- jobDescriptionLink
properties:
profileLink:
type: string
description: A link to the person's LinkedIn or a PDF of their resume.
required: true
jobDescriptionLink:
type: string
description: A link to the job description of the role the person is being considered for.
required: true
senderFirstName:
type: string
description: The name of the person sending the email (not required)
required: false
senderJobTitle:
type: string
description: The job title / role the person has at their company (e.g. Software Engineer, CTO, etc.) (not required)
required: false