# 8 Resending an approver email

##### *This is a series of articles dedicated to demonstrating how to get acquainted with [Openprovider SSL API methods](https://openprovider.help/books/api-integrations/chapter/api-guides-ssl-module). If you want to go the beginning of this guide, please navigate to the article "[1 How to choose a product](https://openprovider.help/books/api-plugins/page/1-choosing-a-product)".*

*To get more information about our API in general, please [use our documentation portal](https://docs.openprovider.com/doc/all#operation/ResendApproverEmail) as your reference.*

<div id="bkmrk-using-the-previous%C2%A0m"><div>  
</div><div>Using the previous method "[7 Updating an approver email address](https://openprovider.help/books/api-plugins/page/7-updating-an-approver-email-address)" we successfully changed the email address to which the certificate approval email would be sent.</div></div><div id="bkmrk-the-%22resend-approver">The "[resend approver email](https://openprovider.help/books/api-plugins/page/8-resending-an-approver-email)" method allows us to resend the approval email to the current list of approver email addresses.  
</div><div id="bkmrk-use-endpoint-path-be"><div><div>![Entering Geo Fence icon](https://openprovider.help/uploads/images/gallery/2026-08/embedded-image-58st7c4y.png)Use endpoint path below. Base URL is determined by both the target environment and API version.</div><div></div></div></div>```
<strong>POST <a href="https://docs.openprovider.com/doc/all#operation/ResendApproverEmail">{base_url}</a></strong>/ssl/orders/<strong><a href="https://openprovider.help/books/api-plugins/page/api-guides-glossary#op_order_id">{id}</a></strong>/approver-email/resend
```

<div id="bkmrk-request-values-name-"><div><div id="bkmrk-request-values-name--1"><details><summary>REQUEST VALUES</summary>

<div><table><tbody><tr><th>### **Name**

</th><th>### **Type**

</th><th>### **Values**

</th><th>### **Description**

</th></tr><tr><td>id</td><td> integer</td><td>numeric value</td><td>[Openprovider Order ID.](https://openprovider.help/books/api-plugins/page/api-guides-glossary#op_order_id)

</td></tr></tbody></table>

  
</div></details><details><summary>REQUEST EXAMPLE</summary>

```
curl -X POST \<br></br> https://api.cte.openprovider.eu/v1beta/ssl/orders/31027/approver-email/resend \<br></br> -H 'Authorization: Bearer deb4bf804928981b018caf45c3c4142b' \<br></br> -H 'Content-Type: application/json' \<br></br> -d '{<br></br> "id": 31027<br></br>}'
```

</details><details><summary>RESPONSE EXAMPLE</summary>

```
{<br></br> "code": 0,<br></br> "data": {<br></br> "id": 1<br></br> },<br></br> "desc": ""<br></br>}
```

</details><details><summary>REQUEST VALUES</summary>

<div><table><tbody><tr><th>### **Name**

</th><th>### **Values**

</th><th>### **Description**

</th></tr><tr><td>code

</td><td>Result code number.

</td><td>[API Result with code returned](https://openprovider.help/books/api-plugins/page/api-error-codes).  
0 = Success with no errors.</td></tr><tr><td>**1. data**</td><td>**Set of values.**</td><td>**Resend Approver Emai Response Data.**</td></tr><tr><td>1.1 id</td><td>Integer value returned.</td><td>[Openprovider Order ID](https://openprovider.help/books/api-plugins/page/api-guides-glossary#op_order_id). </td></tr><tr><td>desc</td><td>Text data response.</td><td>Description as string value. </td></tr><tr><td>maintenance</td><td>True or False. </td><td>Maintenance: True or False.</td></tr><tr><td>**2. warnings**</td><td>An array of possible warnings.</td><td>An array of warning messages</td></tr><tr><td>2.1 code</td><td>Integer value.</td><td>Numeric code value returned (if presented).</td></tr><tr><td>2.2 data</td><td>String value.</td><td>Additional warning message (if presented).</td></tr><tr><td>2.3 desc</td><td>String value.</td><td>Warning description (if presented).</td></tr></tbody></table>

</div></details></div></div></div>**Using this simple method we are aware of how to resent approver email.  
Imagine you already confirmed certificate issuance and activated certificate, then used it and some details of your company have changed (e.g. department, from "IT" to "Financial).  
Use the method "[9 Reissuing SSL Certificate](https://openprovider.help/books/api-plugins/page/9-reissuing-ssl-certificate)" if you want to change some details in an already activated certificate.**

<div id="bkmrk-"></div>