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

계정에 사용자 이름/이메일 인증 추가Client-side

post/users/me/link_email_password

기존 사용자 계정에 사용자 이름/이메일 및 암호 인증을 추가합니다. 이 호출은 장치 ID 또는 전화 번호를 통해 계정을 생성한 경우에 사용합니다.

SecurityBearer
Request
query Parameters
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.

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

사용자 이름입니다.

password
required
string [ 6 .. 100 ] characters

사용자 암호입니다.

email
required
string <email> [ 1 .. 255 ] characters

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

promo_email_agreement
integer >= 0
Default: 1

뉴스레터 수신에 대한 사용자 동의입니다.

Enum: 0 1
Responses
200

확인

400

잘못된 요청

401

인증되지 않음

422

처리할 수 없는 엔터티

429

요청이 너무 많음

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