# Rerequest

{% post /%}
{% path text="/v1/senderIdentities/rerequest" /%}

This API re-requests approval from the user who has been added as the sender identity and declined the request.

## Code snippet

{% codetab %}

cURL

```shell
curl -X 'POST' \
  'https://api.boldsign.com/v1/senderIdentities/rerequest?email=luthercooper%40cubeflakes.com' \
      -H 'accept: */*' \
      -H 'X-API-KEY: {your API key}'
```

C#

```csharp
var apiClient = new ApiClient("https://api.boldsign.com", "Your_API_Key");

var senderIdentityClient = new SenderIdentityClient(apiClient);

senderIdentityClient.RerequestSenderIdentity("luthercooper@cubeflakes.com");
```

Python

```python
import boldsign

configuration = boldsign.Configuration(host = "https://api.boldsign.com", api_key="YOUR_API_KEY")

with boldsign.ApiClient(configuration) as api_client:
    
    sender_identities_api = boldsign.SenderIdentitiesApi(api_client)
    sender_identities_api.re_request_sender_identities(email="luthercooper@cubeflakes.com")
```

PHP

```php
<?php require_once "vendor/autoload.php";

use BoldSign\Configuration;
use BoldSign\Api\SenderIdentitiesApi;

$config = new Configuration();
$config->setHost('https://api.boldsign.com');
$config->setApiKey('YOUR_API_KEY');

$sender_identities_api = new SenderIdentitiesApi($config);
$sender_identities_api->reRequestSenderIdentities($email='luthercooper@cubeflakes.com');
```

Java

```java
ApiClient client = Configuration.getDefaultApiClient();
client.setBasePath("https://api.boldsign.com");
client.setApiKey("YOUR_API_KEY");
            
SenderIdentitiesApi senderIdentitiesApi = new SenderIdentitiesApi(client);
senderIdentitiesApi.reRequestSenderIdentities("luthercooper@cubeflakes.com");
```

NodeJS

```js
import { SenderIdentitiesApi } from "boldsign";

const senderIdentitiesApi = new SenderIdentitiesApi("https://api.boldsign.com");
senderIdentitiesApi.setApiKey("YOUR_API_KEY");

senderIdentitiesApi.reRequestSenderIdentities("luthercooper@cubeflakes.com");
```

{% /codetab %}

## Query parameters

{% nestedtable %}

- {% arguments name="email" /%}{% batch datatype="String" /%}{% required /%}
- Email address of the sender identity.

{% /nestedtable %}

## Example response

***204 No content***

