Xsolla-logo
  • 문서화
  • 계정 생성

새 사용자 등록Client-side

post/user

새 사용자를 생성합니다.

  • 엑솔라 또는 사용자 정의 저장소에 사용자 데이터를 저장하면 사용자는 계정 확인 메시지를 수신하게 됩니다.
  • PlayFab에 사용자 데이터를 저장하는 경우 사용자는 계정 확인 메시지를 받지 않게 됩니다.
  • Firebase에 사용자 데이터를 저장하는 경우 Firebase 측으로부터 계정 확인 메시지를 수신하게 됩니다.

사용자 데이터 저장소에 대한 자세한 정보는 사용자 데이터 저장소 비교 페이지를 참조합니다.

Request
query Parameters
projectId
required
string <uuid>

게시자 계정의 로그인 프로젝트 ID입니다.

login_url
string

URL to redirect the user to after account confirmation, successful authentication, two-factor authentication configuration, or password reset confirmation. Must be identical to the Callback URL specified in the URL block of Publisher Account. For the scenario of a login error, the value should be identical to the the Error callback URL specified in the URL block of Publisher Account. To find the settings, go to Login > your Login project and select the Callback URLs section in the upper block. Required if there are several Callback URLs.

payload
string

Your custom data. The value of the parameter will be returned in the payload claim of the user JWT. Recommended maximum length less than 500 characters. Note, that this parameter is only available if you use a custom user data storage.

Request Body schema: application/json
username
required
string [ 3 .. 255 ] characters

사용자 이름입니다.

password
required
string [ 6 .. 100 ] characters

사용자 암호입니다.

email
required
string [ 1 .. 255 ] characters

사용자 이메일 주소입니다.

accept_consent
boolean

사용자가 자신의 개인 데이터 처리에 동의했는지 여부입니다.

fields
object

확장된 등록 양식에 사용하는 매개변수입니다. 이 기능을 사용하려면 고객 성공 매니저에게 문의해야 합니다.

Responses
200

확인(계정 확인이 비활성화됨)

204

콘텐츠 없음(계정 확인이 활성화됨)

400

잘못된 요청

404

찾을 수 없음

422

처리할 수 없는 엔터티

429

요청이 너무 많음

Request samples
application/json
{
  • "email": "john-email@email.com",
  • "fields": {
    },
  • "password": "password123",
  • "username": "John"
}
Response samples
application/json