Signup create
POST /api/signup/
curl \
-X POST http://api.example.com/api/signup/ \
-H "Content-Type: application/json" \
-d '{"username":"string","email":"hello@example.com","password":"string"}'
Request example
{
"username": "string",
"email": "hello@example.com",
"password": "string"
}
Request examples
{
"username": "string",
"email": "hello@example.com",
"password": "string"
}
Response examples (200)
{
"id": 42,
"username": "string",
"email": "hello@example.com"
}
Response examples (200)
{
"id": 42,
"username": "string",
"email": "hello@example.com"
}