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

# Complete managed social signup REST API

POST

/api/cloud/signup/social/complete

FetchcURL

```
const url = 'http://127.0.0.1:25737/api/cloud/signup/social/complete';
const options = {
  method: 'POST',
  headers: {'Content-Type': 'application/json'},
  body: '{"accepted_tos":true,"billing":"monthly","completion_token":"example","email":"hello@example.com","jurisdiction":"EU","locale":"example","plan_code":"free","team_name":"example"}'
};

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/social/complete \
  --header 'Content-Type: application/json' \
  --data '{ "accepted_tos": true, "billing": "monthly", "completion_token": "example", "email": "hello@example.com", "jurisdiction": "EU", "locale": "example", "plan_code": "free", "team_name": "example" }'
```

-

Creates a hosted cloud user and team after provider authentication, preserving the existing plan, billing-intent, locale, region, Terms, and onboarding behavior. Google and GitHub verified email skip HitKeep email verification; Microsoft returns verification_sent.

## Request Bodyrequired

application/json

object

**accepted_tos**

required

boolean

**billing**

required

string

Allowed values: monthly annual

**completion_token**

required

string

**email**

string format: email

**jurisdiction**

required

string

Allowed values: EU US

**locale**

required

string

**plan_code**

required

string

Allowed values: free pro business

**team_name**

required

string

<= 120 characters

## Responses

### 201

Social signup result

application/json

object

**billing**

required

string

**plan_code**

required

string

**redirect_url**

string

**status**

required

string

Allowed values: ok verification_sent

##### Example

```
{
  "status": "ok"
}
```

### 400

Invalid signup intent

application/json

object

**message**

string

##### Examplegenerated

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

### 404

Social signup disabled

application/json

object

**message**

string

##### Examplegenerated

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

### 409

Account or identity already exists

application/json

object

**message**

string

##### Examplegenerated

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

[Previous Create managed cloud account](https://hitkeep.com/api/operations/apicloudsignup/)[Next Stripe webhook](https://hitkeep.com/api/operations/apicloudwebhooksstripe/)
