User
사용자 생성
POST /users
POST
/api/rest/v1/users사용자 생성
인증: Bearer 인증키 (REST_API) 또는 세션
Request Body
| 이름 | 타입 | 설명 |
|---|---|---|
email* | string | - |
password* | string | - |
name | string | - |
permissionLevel | 0 | 1 | 5 | 9 | - |
Response Example
{
"data": {
"id": "...",
"email": "new@example.com"
}
}