curl --location --request POST '/api/v2/auth/register' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "gustav@google.com",
"password": "12341234"
}'
{
"success": true,
"message": "string",
"data": {
"user": {
"id": "string",
"email": "string"
},
"access_token": "string",
"token_type": "string",
"expires_in": 0,
"refresh_token": "string",
"refresh_expires_in": 0
}
}