curl --location --request POST '/api/auth/sign-up/email' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "string",
"email": "string",
"password": "string",
"image": "string",
"callbackURL": "string",
"rememberMe": true
}'
{
"token": "string",
"user": {
"id": "string",
"email": "user@example.com",
"name": "string",
"image": "http://example.com",
"emailVerified": true,
"createdAt": "2019-08-24T14:15:22Z",
"updatedAt": "2019-08-24T14:15:22Z"
}
}