Request
Body Params application/json
{
"user": {
"username": "string",
"password": "string",
"email": "string",
"fullName": "string",
"phoneNumber": "string",
"profilePicture": "string"
}
}
Request Code Samples
curl --location --request POST 'http://localhost:8080/auth/register' \
--header 'Content-Type: application/json' \
--data-raw '{
"user": {
"username": "string",
"password": "string",
"email": "string",
"fullName": "string",
"phoneNumber": "string",
"profilePicture": "string"
}
}'
Responses
{
"code": 0,
"result": {
"accessToken": "string",
"refreshToken": "string",
"expiresAt": "string"
},
"error": "string"
}
Modified at 2026-04-02 20:34:51