createuser - choisungwook/portfolio GitHub Wiki

개요

  • admin 액세스 토큰만 계정을 생성할 수 있다.
  • 디폴트 설정은 이메일 인증이 활성화되어 있다. 이메일 인증이 필요없으면 비활성화 한다.

이메일 인증 공식문서: https://docs.gitlab.com/ee/user/upgrade_email_bypass.html


request

공식문서: https://docs.gitlab.com/ee/api/users.html#user-creation

  • HTTP POST메소드
POST /users
  • body
{
    "username": "test17",
    "name": "[email protected]",
    "email": "[email protected]",
    "password": "password1234",
    "skip_confirmation": true
}
⚠️ **GitHub.com Fallback** ⚠️