---
title: "Resend managed cloud signup verification REST API | HitKeep"
description: "Reference for the HitKeep REST API operation Resend managed cloud signup verification, including request parameters, responses, and authentication notes."
canonical: "https://hitkeep.com/api/operations/apicloudsignupresend-verification/"
---

# Resend managed cloud signup verification REST API

POST

/api/cloud/signup/resend-verification

FetchcURL

```
const url = 'http://127.0.0.1:25737/api/cloud/signup/resend-verification';
const options = {
  method: 'POST',
  headers: {'Content-Type': 'application/json'},
  body: '{"email":"hello@example.com"}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```
curl --request POST \
  --url http://127.0.0.1:25737/api/cloud/signup/resend-verification \
  --header 'Content-Type: application/json' \
  --data '{ "email": "hello@example.com" }'
```

-

Requests another verification email for a password-based managed cloud signup. Valid requests receive the same response regardless of account state.

## Request Bodyrequired

application/json

object

**email**

required

string format: email

##### Examplegenerated

```
{
  "email": "hello@example.com"
}
```

## Responses

### 202

Signup verification resend accepted

application/json

object

**retry_after_seconds**

required

integer

**status**

required

string

Allowed values: accepted

##### Example

```
{
  "status": "accepted"
}
```

### 400

Invalid request

application/json

object

**message**

string

##### Examplegenerated

```
{
  "message": "example"
}
```

### 404

Cloud signup disabled

application/json

object

**message**

string

##### Examplegenerated

```
{
  "message": "example"
}
```

### 429

Too many requests

application/json

object

**message**

string

##### Examplegenerated

```
{
  "message": "example"
}
```

[Previous Create managed cloud account](https://hitkeep.com/api/operations/apicloudsignup/)[Next Complete managed social signup](https://hitkeep.com/api/operations/apicloudsignupsocialcomplete/)
