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": [
"audit@company.com"
]
}'
This response does not have an example.
This endpoint allows you to send a quote by email to your customer. This requires that the PDF file for that document has been generated (this process can take a few minutes), so if you just created the quote in our system, we may return a 409 error. You should retry the request in a few minutes - if you receive a 204 response, that means that the email is on its way. For more information about email sending, please read [this guide](https://pennylane.readme.io/v2.0/docs/sending-documents-by-email).
ℹ️ This endpoint requires one of the following scopes:
quotes:all
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": [
"audit@company.com"
]
}'
This response does not have an example.
The access token received from the authorization server in the OAuth 2.0 flow.
Quote is being sent by email
Was this page helpful?