{
"email": "test@example.com",
"invitation_code": "abc123def456",
"password": "password123",
"username": "testuser"
}curl --location --request POST '/auth/register' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "test@example.com",
"invitation_code": "abc123def456",
"password": "password123",
"username": "testuser"
}'{
"code": 20000,
"data": {
"email": "test@example.com",
"id": 1,
"username": "testuser"
},
"err_code": "string",
"msg": null
}