--- title: "Resend order approval email" source_url: https://dev.digicert.com/certcentral-apis/services-api/orders/resend-order-approval-email.html api_method: PUT api_endpoint: "/services/v2/order/certificate/{{order_id}}/order-approval/resend-emails" api_url: "https://www.digicert.com/services/v2/order/certificate/{{order_id}}/order-approval/resend-emails" --- **PUT** `https://www.digicert.com/services/v2/order/certificate/{{order_id}}/order-approval/resend-emails` Use this endpoint to resend order approval emails to one or more verified contacts for a pending EV TLS/SSL certificate order. > **Info** > > Resending order approval emails may trigger order-related webhook notifications. If webhooks are enabled, you may receive: > > - An event indicating the approval email was sent (`orderApprovalEmailStatus: "sent"`) > - An event indicating the approval was completed (`orderApprovalEmailStatus: "complete"`) > > For more information, see [Webhook event logs](https://dev.digicert.com/md/certcentral-apis/services-api/webhooks/webhook-event-logs.md). ## Example requests and responses ## cURL ```bash curl -X PUT \ 'https://www.digicert.com/services/v2/order/certificate/{{order_id}}/order-approval/resend-emails' \ -H 'Content-Type: application/json' \ -H 'X-DC-DEVKEY: {{api_key}}' \ --data-raw '{ "emails": [ "john.doe@example.com" ] }' ``` ## 204 No Content ```json // No Content ``` ## Path parameters
Name Type Description
order_id string ID of the order to resend order approval emails for.
## Request parameters
Name Req/Opt Type Description
emails required array of strings Array of email addresses for verified contacts CertCentral sends order approval emails to. Email addresses must belong to validated verified contacts for the organization.