Skip to main content
POST
/
api
/
external
/
v2
/
quotes
/
{id}
/
send_by_email
Send a quote by email
curl --request POST \
  --url https://app.pennylane.com/api/external/v2/quotes/{id}/send_by_email \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "recipients": [
    "[email protected]"
  ]
}'
This response does not have an example.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

id
integer
required

Body

application/json
recipients
string<email>[]

Email recipients.

If empty, the email will be sent to the recipient email addresses specified for the customer of this quote.

Example:

Response

Quote is being sent by email

I