# \[POST] Signup

<mark style="color:green;">`POST`</mark> `api/v1/auth/signup`

#### Request Body

| Name                                       | Type   | Description |
| ------------------------------------------ | ------ | ----------- |
| mobile<mark style="color:red;">\*</mark>   | String |             |
| birth<mark style="color:red;">\*</mark>    | String |             |
| nickname<mark style="color:red;">\*</mark> | String |             |
| name<mark style="color:red;">\*</mark>     | String |             |
| password<mark style="color:red;">\*</mark> | String |             |
| email<mark style="color:red;">\*</mark>    | String |             |

{% tabs %}
{% tab title="200: OK " %}

```javascript
{
    message: "ok"
}
```

{% endtab %}

{% tab title="200: OK 회원가입에 필요한 정보가 하나라도 없을때" %}

```javascript
{
    message: "require All Info"
}
```

{% endtab %}

{% tab title="500: Internal Server Error " %}

```javascript
{
    // Response
}
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://namhunkim.gitbook.io/onwedding-1/auth/post-signup.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
