- Back to home
- Core
- Authentication
- User
- Point Reward
- Notification
- HealthcheckGET
- Renew OTPPOST
Sign Up V1
Developing
POST
/core/v1/auth/signup
Last modified:2025-03-03 18:10:08
Request
Body Params application/json
username
string
required
password
string
required
displayName
string
required
email
string
required
profileUrl
string
required
isAcceptConcern
boolean
required
Example
{
"username": "kasidatep",
"password": "1qazZAQ!",
"displayName": "{{$internet.displayName}}",
"email": "bank@kasidate.me",
"profileUrl": "{{$image.avatarGitHub}}",
"isAcceptConcern": true
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/core/v1/auth/signup' \
--header 'Content-Type: application/json' \
--data-raw '{
"username": "kasidatep",
"password": "1qazZAQ!",
"displayName": "{{$internet.displayName}}",
"email": "bank@kasidate.me",
"profileUrl": "{{$image.avatarGitHub}}",
"isAcceptConcern": true
}'
Responses
🟢200OK
application/json
Body
token
string
required
expiredAt
string <date-time>
required
Example
{
"message": "Wait for email verification",
"status": "success",
"otp": {
"otp_ref": "b9o7fp",
"expired_at": "2025-02-24T10:58:33.392Z"
}
}
🟠400Bad Request
🔴500Server Error