Skip to main content
POST
/
sendQuoteRequest
Send Quote Request Email
curl --request POST \
  --url https://app.coverwhale.com/api/v1/sendQuoteRequest \
  --header 'Accept: <accept>' \
  --header 'AccessToken: <api-key>' \
  --header 'Content-Type: <content-type>' \
  --data '
{
  "email": "agent@example.com"
}
'
"Sent quote request email"

Authorizations

AccessToken
string
header
required

AWS Cognito access token obtained from the /authentication endpoint. Token expires after 3600 seconds.

Headers

Content-Type
string
required
Accept
string
required
AccessToken
string
required

Body

application/json
email
string
required

Email address to send the quote request to

Example:

"agent@example.com"

Response

Quote request email sent successfully

The response is of type string.

Example:

"Sent quote request email"