Authorization: Bearer <token>Authorization: Bearer ********************{
"account": "admin",
"password": "12345678"
}curl --location --request POST '/auth:signIn' \
--header 'X-SPACES: {{space}}' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"account": "admin",
"password": "12345678"
}'{
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"user": {
"id": 1,
"account": "admin",
"email": "admin@example.com",
"roles": [
"admin",
"user"
]
}
}